From e54e6f7e3d34c28d698e637f9099162b3c1917e9 Mon Sep 17 00:00:00 2001 From: Hernando Castano Date: Fri, 15 Jan 2021 12:29:28 -0500 Subject: [PATCH] Pin Rust Nightly to 2020-12-17 (#652) --- .github/workflows/rust.yml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index ddf12570bc015..6c870bf15b307 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -22,7 +22,7 @@ jobs: toolchain: - stable #- beta - - nightly + - nightly-2020-12-17 runs-on: self-hosted container: image: paritytech/ci-linux:production @@ -35,6 +35,7 @@ jobs: CMAKE_C_COMPILER_LAUNCHER: sccache CMAKE_CXX_COMPILER_LAUNCHER: sccache CARGO_TARGET_DIR: "/cache/${{ github.head_ref }}/${{ matrix.toolchain }}/" + WASM_BUILD_TOOLCHAIN: nightly-2020-12-17 steps: - name: Cancel Previous Runs uses: styfle/cancel-workflow-action@0.4.1 @@ -48,6 +49,10 @@ jobs: - name: Configure CARGO_TARGET_DIR shell: bash run: ./scripts/ci-cache.sh + - name: Install Toolchain + run: rustup toolchain add nightly-2020-12-17 + - name: Add WASM Utilities + run: rustup target add wasm32-unknown-unknown --toolchain nightly-2020-12-17 - name: Cache checking if: github.event_name == 'pull_request' && github.event.action == 'opened' || github.event.action == 'reopened' continue-on-error: true @@ -77,11 +82,11 @@ jobs: ## Linting Stage - name: Add clippy - if: matrix.toolchain == 'nightly' + if: matrix.toolchain == 'nightly-2020-12-17' run: rustup component add clippy --toolchain ${{ matrix.toolchain }} - name: Clippy uses: actions-rs/cargo@master - if: matrix.toolchain == 'nightly' + if: matrix.toolchain == 'nightly-2020-12-17' with: command: clippy toolchain: ${{ matrix.toolchain }}