Skip to content

Commit

Permalink
Try pinning nightly version
Browse files Browse the repository at this point in the history
  • Loading branch information
Amanieu committed Nov 29, 2021
1 parent c4960aa commit 82b3a39
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
steps:
- uses: actions/checkout@master
- name: Install Rust
run: rustup update nightly && rustup default nightly
run: rustup update nightly-2021-11-27 && rustup default nightly-2021-11-27
- run: ci/style.sh

docs:
Expand All @@ -25,7 +25,7 @@ jobs:
steps:
- uses: actions/checkout@master
- name: Install Rust
run: rustup update nightly && rustup default nightly
run: rustup update nightly-2021-11-27 && rustup default nightly-2021-11-27
- run: ci/dox.sh
env:
CI: 1
Expand All @@ -45,7 +45,7 @@ jobs:
steps:
- uses: actions/checkout@master
- name: Install Rust
run: rustup update nightly && rustup default nightly
run: rustup update nightly-2021-11-27 && rustup default nightly-2021-11-27
- run: cargo test --manifest-path crates/stdarch-verify/Cargo.toml

env_override:
Expand All @@ -55,7 +55,7 @@ jobs:
steps:
- uses: actions/checkout@master
- name: Install Rust
run: rustup update nightly && rustup default nightly
run: rustup update nightly-2021-11-27 && rustup default nightly-2021-11-27
- run: RUST_STD_DETECT_UNSTABLE=avx cargo test --features=std_detect_env_override --manifest-path crates/std_detect/Cargo.toml env_override_no_avx

test:
Expand Down Expand Up @@ -174,18 +174,18 @@ jobs:
submodules: recursive
- name: Install Rust (rustup)
run: |
rustup update nightly --no-self-update
rustup default nightly
rustup update nightly-2021-11-27 --no-self-update
rustup default nightly-2021-11-27
if: matrix.os != 'macos-latest'
- name: Install Rust (macos)
run: |
curl https://sh.rustup.rs | sh -s -- -y --default-toolchain nightly
echo "$HOME/.cargo/bin" >> $GITHUB_PATH
rustup update nightly --no-self-update
rustup default nightly
rustup update nightly-2021-11-27 --no-self-update
rustup default nightly-2021-11-27
if: matrix.os == 'macos-latest'
- run: |
rustup default nightly
rustup default nightly-2021-11-27
rustup target add ${{ matrix.target }}
if: "!endsWith(matrix.target, 'emulated')"
- name: Setup (aarch64-apple-darwin)
Expand Down

0 comments on commit 82b3a39

Please sign in to comment.