Revert "WIP: Add toolchain matrix to job"
This reverts commit 77808b7d83
.
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.
This commit is contained in:
parent
e6643c083d
commit
567c39c7f1
|
@ -105,16 +105,13 @@ jobs:
|
||||||
WASM:
|
WASM:
|
||||||
name: WASM
|
name: WASM
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
strategy:
|
|
||||||
matrix:
|
|
||||||
toolchain: [stable, beta, nightly, 1.48.0]
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout Crate
|
- name: Checkout Crate
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
- name: Install clang
|
- name: Install clang
|
||||||
run: sudo apt-get install -y clang
|
run: sudo apt-get install -y clang
|
||||||
- name: Checkout Toolchain
|
- name: Checkout Toolchain
|
||||||
uses: dtolnay/rust-toolchain@${{ matrix.toolchain }}
|
uses: dtolnay/rust-toolchain@stable
|
||||||
- name: Running WASM tests
|
- name: Running WASM tests
|
||||||
env:
|
env:
|
||||||
DO_WASM: true
|
DO_WASM: true
|
||||||
|
|
Loading…
Reference in New Issue