From: Matt Corallo Date: Mon, 31 Oct 2022 18:46:31 +0000 (+0000) Subject: Use rustc stable for benchmark CI run to fix current breakage X-Git-Tag: v0.0.113~65^2 X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;h=refs%2Fheads%2F2022-10-stable-bench;p=rust-lightning Use rustc stable for benchmark CI run to fix current breakage --- diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 171c57fcb..3a67a6812 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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