Skip to content

Commit

Permalink
Use rustup beta, which fixes Windows OOM issues
Browse files Browse the repository at this point in the history
  • Loading branch information
hkratz authored May 13, 2021
1 parent 8b206bd commit 6f5c688
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@ jobs:
rustflags: "-C target-feature=+avx2"
steps:
- uses: actions/checkout@v2
- name: Update rustup
if: ${{ matrix.os == 'windows-latest' }}
run: rustup self update
- uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.toolchain }}
Expand Down Expand Up @@ -78,6 +81,8 @@ jobs:
working-directory: inlining
steps:
- uses: actions/checkout@v2
- name: Update rustup
run: rustup self update
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly
Expand All @@ -97,6 +102,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Update rustup
run: rustup self update
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly
Expand All @@ -123,6 +130,8 @@ jobs:
target: aarch64-unknown-linux-gnu
steps:
- uses: actions/checkout@v2
- name: Update rustup
run: rustup self update
- uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.toolchain }}
Expand All @@ -148,6 +157,9 @@ jobs:
target: i686-unknown-linux-gnu
steps:
- uses: actions/checkout@v2
- name: Update rustup
if: ${{ matrix.os == 'windows-latest' }}
run: rustup self update
- uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.toolchain }}
Expand All @@ -163,6 +175,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Update rustup
run: rustup self update
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
Expand All @@ -176,6 +190,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Update rustup
run: rustup self update
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly
Expand Down

0 comments on commit 6f5c688

Please sign in to comment.