From 567c39c7f1ff8e1602e7317f7ec04173e3150410 Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Thu, 13 Jul 2023 09:06:01 +1000 Subject: [PATCH] Revert "WIP: Add toolchain matrix to job" This reverts commit 77808b7d837da2a1c99f2a7b46213efe04e5f7dd. dtolnay/rust-toolchain does not support using a matrix as far as I can tell. Since the PR brief description contains "WIP" it looks like the original author (me) was testing this using CI, no idea how this patch got merged. --- .github/workflows/rust.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 1cd418664..9297ba0c0 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -105,16 +105,13 @@ jobs: WASM: name: WASM runs-on: ubuntu-latest - strategy: - matrix: - toolchain: [stable, beta, nightly, 1.48.0] steps: - name: Checkout Crate uses: actions/checkout@v3 - name: Install clang run: sudo apt-get install -y clang - name: Checkout Toolchain - uses: dtolnay/rust-toolchain@${{ matrix.toolchain }} + uses: dtolnay/rust-toolchain@stable - name: Running WASM tests env: DO_WASM: true