Skip to content

Commit b0626b7

Browse files
committed
Merge #603: Add toolchain matrix to WASM job
77808b7 WIP: Add toolchain matrix to job (Tobin C. Harding) Pull request description: Recently I changed CI to use the dtolnay runner and in doing so introduced a regression (knowingly) whereby we only ran the WASM tests with the stable toolchain. Run the WASM tests with multiple toolchains - stable - beta - 1.48.0 - nightly ACKs for top commit: apoelstra: ACK 77808b7 Tree-SHA512: c55fc31977082ad8332a7ae05267ca464294227a6542c251ea9ae367b6935e41a3ae27e8505c88ba69a85eca4a8600d46fed189be5033f7a7b85093038cf8590
2 parents 141b874 + 77808b7 commit b0626b7

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/rust.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,13 +105,16 @@ jobs:
105105
WASM:
106106
name: WASM
107107
runs-on: ubuntu-latest
108+
strategy:
109+
matrix:
110+
toolchain: [stable, beta, nightly, 1.48.0]
108111
steps:
109112
- name: Checkout Crate
110113
uses: actions/checkout@v3
111114
- name: Install clang
112115
run: sudo apt-get install -y clang
113116
- name: Checkout Toolchain
114-
uses: dtolnay/rust-toolchain@stable
117+
uses: dtolnay/rust-toolchain@${{ matrix.toolchain }}
115118
- name: Running WASM tests
116119
env:
117120
DO_WASM: true

0 commit comments

Comments
 (0)