File tree 4 files changed +11
-11
lines changed
4 files changed +11
-11
lines changed Original file line number Diff line number Diff line change 12
12
steps :
13
13
- uses : actions/checkout@v2
14
14
15
- - name : Install Rust stable
16
- run : rustup update --no-self-update stable && rustup default stable
15
+ - name : Install Rust nightly
16
+ run : rustup update --no-self-update nightly && rustup default nightly
17
17
18
18
- name : Check the code formatting with rustfmt
19
19
run : cargo fmt --all -- --check
31
31
strategy :
32
32
matrix :
33
33
os : [ubuntu-latest, windows-latest]
34
- channel : [stable, beta, nightly]
34
+ channel : [nightly]
35
35
runs-on : ${{ matrix.os }}
36
36
steps :
37
37
- uses : actions/checkout@v2
61
61
steps :
62
62
- uses : actions/checkout@v2
63
63
64
- - name : Install Rust stable
65
- run : rustup update --no-self-update stable && rustup default stable
64
+ - name : Install Rust nightly
65
+ run : rustup update --no-self-update nightly && rustup default nightly
66
66
67
67
- name : Run minicrater
68
68
shell : bash
Original file line number Diff line number Diff line change 8
8
steps :
9
9
- uses : actions/checkout@v2
10
10
11
- - name : Install Rust Stable
12
- run : rustup update stable && rustup default stable
11
+ - name : Install Rust nightly
12
+ run : rustup update nightly && rustup default nightly
13
13
14
14
- name : Check the code formatting with rustfmt
15
15
run : cargo fmt --all -- --check
28
28
steps :
29
29
- uses : actions/checkout@v2
30
30
31
- - name : Install Rust Stable
32
- run : rustup update stable && rustup default stable
31
+ - name : Install Rust nightly
32
+ run : rustup update nightly && rustup default nightly
33
33
34
34
- name : Build Crater
35
35
run : cargo build
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y \
19
19
# Install the currently pinned toolchain with rustup
20
20
RUN curl https://static.rust-lang.org/rustup/dist/x86_64-unknown-linux-gnu/rustup-init >/tmp/rustup-init && \
21
21
chmod +x /tmp/rustup-init && \
22
- /tmp/rustup-init -y --no-modify-path --default-toolchain stable --profile minimal
22
+ /tmp/rustup-init -y --no-modify-path --default-toolchain nightly --profile minimal
23
23
ENV PATH=/root/.cargo/bin:$PATH
24
24
25
25
# Build the dependencies in a separate step to avoid rebuilding all of them
Original file line number Diff line number Diff line change 1
- stable
1
+ nightly
You can’t perform that action at this time.
0 commit comments