1212
1313 strategy :
1414 matrix :
15- rust : ["1.56 .0", stable, beta, nightly]
15+ rust : ["1.61 .0", stable, beta, nightly]
1616 features : ["", "rayon"]
1717 command : [test, benchmark]
1818
@@ -29,12 +29,12 @@ jobs:
2929 - name : test
3030 run : >
3131 cargo test --tests --benches --no-default-features --features "$FEATURES"
32- if : ${{ matrix.command == 'test' && matrix.rust != '1.56 .0' }}
32+ if : ${{ matrix.command == 'test' && matrix.rust != '1.61 .0' }}
3333 env :
3434 FEATURES : ${{ matrix.features }}
3535 - name : benchmark
3636 run : cargo bench --bench decoding_benchmark --no-default-features --features "$FEATURES" -- --warm-up-time 1 --measurement-time 1 --sample-size 25
37- if : ${{ matrix.command == 'benchmark' && matrix.rust != '1.56 .0' }}
37+ if : ${{ matrix.command == 'benchmark' && matrix.rust != '1.61 .0' }}
3838 env :
3939 FEATURES : ${{ matrix.features }}
4040
@@ -81,10 +81,10 @@ jobs:
8181 - name : Install wasm-bindgen
8282 run : >
8383 curl -L "$WASMBINDGEN_UPSTREAM"
84- | tar xzf - --strip-components=1 wasm-bindgen-0.2.82 -x86_64-unknown-linux-musl/wasm-bindgen-test-runner
84+ | tar xzf - --strip-components=1 wasm-bindgen-0.2.83 -x86_64-unknown-linux-musl/wasm-bindgen-test-runner
8585 && sudo mv wasm-bindgen-test-runner /usr/bin/wasm-bindgen-test-runner
8686 env :
87- WASMBINDGEN_UPSTREAM : https://github.com/rustwasm/wasm-bindgen/releases/download/0.2.82 /wasm-bindgen-0.2.82 -x86_64-unknown-linux-musl.tar.gz
87+ WASMBINDGEN_UPSTREAM : https://github.com/rustwasm/wasm-bindgen/releases/download/0.2.83 /wasm-bindgen-0.2.83 -x86_64-unknown-linux-musl.tar.gz
8888 - name : Installing Rust toolchain
8989 uses : actions-rs/toolchain@v1
9090 with :
9595 - name : Test
9696 run : |
9797 cargo update
98- cargo update -p wasm-bindgen --precise 0.2.82
98+ cargo update -p wasm-bindgen --precise 0.2.83
9999 cargo test -vv --target wasm32-unknown-unknown
100100 env :
101101 CARGO_TARGET_WASM32_UNKNOWN_UNKNOWN_RUNNER : wasm-bindgen-test-runner
0 commit comments