From c29f4599ac29783f15e2334e08d7762b8f80e7ba Mon Sep 17 00:00:00 2001 From: Benjamin Bouvier Date: Tue, 22 Sep 2020 10:43:28 +0200 Subject: [PATCH] Add a script to run CI for the new x64 backend (#2215) Co-authored-by: Andrew Brown --- ci/run-experimental-x64-ci.sh | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100755 ci/run-experimental-x64-ci.sh diff --git a/ci/run-experimental-x64-ci.sh b/ci/run-experimental-x64-ci.sh new file mode 100755 index 0000000000..2773eee2d8 --- /dev/null +++ b/ci/run-experimental-x64-ci.sh @@ -0,0 +1,17 @@ +#!/bin/bash + +cargo +nightly \ + -Zfeatures=all -Zpackage-features \ + test \ + --features test-programs/test_programs \ + --features experimental_x64 \ + --all \ + --exclude wasmtime-lightbeam \ + --exclude peepmatic \ + --exclude peepmatic-automata \ + --exclude peepmatic-fuzzing \ + --exclude peepmatic-macro \ + --exclude peepmatic-runtime \ + --exclude peepmatic-test \ + --exclude peepmatic-souper \ + --exclude lightbeam