File tree 3 files changed +9
-3
lines changed
3 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -1415,7 +1415,7 @@ elif run_os == 'wasi':
1415
1415
config .swift_test_options , config .swift_frontend_test_options )
1416
1416
subst_target_swift_frontend_mock_sdk = config .target_swift_frontend
1417
1417
subst_target_swift_frontend_mock_sdk_after = ""
1418
- config .target_run = 'wasmer run --backend cranelift --'
1418
+ config .target_run = 'wasmer run --singlepass --'
1419
1419
if 'interpret' in lit_config .params :
1420
1420
use_interpreter_for_simple_runs ()
1421
1421
config .target_sil_opt = (
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ if [[ "$(uname)" == "Darwin" ]]; then
33
33
fi
34
34
35
35
if [[ " $( uname) " == " Linux" ]]; then
36
- $RUN_TEST_BIN --build-dir $TARGET_BUILD_DIR --target wasi-wasm32 test/stdlib/ || true
36
+ $RUN_TEST_BIN --build-dir $TARGET_BUILD_DIR --target wasi-wasm32 test/stdlib/
37
37
echo " Skip running test suites for Linux"
38
38
else
39
39
Original file line number Diff line number Diff line change 3
3
set -ex
4
4
5
5
brew uninstall $( brew list | grep python@2)
6
- brew install cmake ninja llvm sccache wasmer
6
+ brew install cmake ninja llvm sccache
7
+
8
+ # Install latest wasmer
9
+
10
+ if [ ! -e ~ /.wasmer/bin/wasmer ]; then
11
+ curl https://get.wasmer.io -sSfL | sh
12
+ fi
7
13
8
14
SOURCE_PATH=" $( cd " $( dirname $0 ) /../../../../" && pwd ) "
9
15
SWIFT_PATH=$SOURCE_PATH /swift
You can’t perform that action at this time.
0 commit comments