Merge pull request #1818 from TheBlueMatt/2022-10-stable-bench

Use rustc stable for benchmark CI run to fix current breakage
This commit is contained in:
Matt Corallo 2022-10-31 21:28:53 +00:00 committed by GitHub
commit 0f8c8d6695
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -228,7 +228,7 @@ jobs:
benchmark:
runs-on: ubuntu-latest
env:
TOOLCHAIN: nightly
TOOLCHAIN: stable
steps:
- name: Checkout source code
uses: actions/checkout@v3
@ -273,7 +273,7 @@ jobs:
cd ..
- name: Run benchmarks on Rust ${{ matrix.toolchain }}
run: |
cargo bench --features _bench_unstable
RUSTC_BOOTSTRAP=1 cargo bench --features _bench_unstable
check_commits:
runs-on: ubuntu-latest