Reenable the new backend x64 CI;

The intermittent failure have likely been fixed by a recent round of
general fixes in the new x64 backend. This basically reverts
https://github.com/bytecodealliance/wasmtime/pull/2100 and uses the CI
script there.
This commit is contained in:
Benjamin Bouvier
2020-09-22 19:24:16 +02:00
parent 04cf94cea3
commit b684384986
2 changed files with 32 additions and 1 deletions

View File

@@ -1,6 +1,11 @@
#!/bin/bash
cargo +nightly \
# Use the Nightly variant of the compiler to properly unify the
# experimental_x64 feature across all crates. Once the feature has stabilized
# and become the default, we can remove this.
CARGO_VERSION=${CARGO_VERSION:-"+nightly"}
cargo $CARGO_VERSION \
-Zfeatures=all -Zpackage-features \
test \
--features test-programs/test_programs \