File tree Expand file tree Collapse file tree 1 file changed +8
-7
lines changed Expand file tree Collapse file tree 1 file changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -63,15 +63,16 @@ jobs:
63
63
64
64
- name : Install toolchain dependencies
65
65
if : matrix.container == 'ubuntu:18.04'
66
- run : apt-get update && apt-get install -y build-essential curl
66
+ shell : bash
67
+ run : |
68
+ apt-get update && apt-get install -y build-essential curl
69
+ curl --proto '=https' --tlsv1.2 "https://sh.rustup.rs" | sh -s -- --default-toolchain none -y
67
70
68
71
- name : Install Rust toolchain
69
- uses : actions-rs/toolchain@v1
70
- with :
71
- toolchain : stable
72
- target : ${{ matrix.target }}
73
- components : rust-src
74
- override : true
72
+ run : |
73
+ rustup update --no-self-update stable
74
+ rustup target add ${{ matrix.target }}
75
+ rustup component add rust-src
75
76
76
77
- name : Install Node.js
77
78
uses : actions/setup-node@v1
You can’t perform that action at this time.
0 commit comments