Skip to content

Commit c7ed9ab

Browse files
Switch to nightly due to stable compiler issue
Stable compiler currently allocates too much memory (56+ GB). Nightly (1.59) is fixed with regards to this issue; 1.56.1 seems to have the same problem.
1 parent 91d28f2 commit c7ed9ab

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

.github/workflows/bors.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ jobs:
1212
steps:
1313
- uses: actions/checkout@v2
1414

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
1717

1818
- name: Check the code formatting with rustfmt
1919
run: cargo fmt --all -- --check
@@ -31,7 +31,7 @@ jobs:
3131
strategy:
3232
matrix:
3333
os: [ubuntu-latest, windows-latest]
34-
channel: [stable, beta, nightly]
34+
channel: [nightly]
3535
runs-on: ${{ matrix.os }}
3636
steps:
3737
- uses: actions/checkout@v2
@@ -61,8 +61,8 @@ jobs:
6161
steps:
6262
- uses: actions/checkout@v2
6363

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
6666

6767
- name: Run minicrater
6868
shell: bash

.github/workflows/pr.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ jobs:
88
steps:
99
- uses: actions/checkout@v2
1010

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
1313

1414
- name: Check the code formatting with rustfmt
1515
run: cargo fmt --all -- --check
@@ -28,8 +28,8 @@ jobs:
2828
steps:
2929
- uses: actions/checkout@v2
3030

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
3333

3434
- name: Build Crater
3535
run: cargo build

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y \
1919
# Install the currently pinned toolchain with rustup
2020
RUN curl https://static.rust-lang.org/rustup/dist/x86_64-unknown-linux-gnu/rustup-init >/tmp/rustup-init && \
2121
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
2323
ENV PATH=/root/.cargo/bin:$PATH
2424

2525
# Build the dependencies in a separate step to avoid rebuilding all of them

rust-toolchain

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
stable
1+
nightly

0 commit comments

Comments
 (0)