diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index b7e5c910..40d5a25a 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -125,17 +125,13 @@ jobs: export WASIP1_DIR=$(realpath $($CLANG_DIR/clang -print-resource-dir)/lib/wasip1/) export WASIP2_DIR=$(realpath $($CLANG_DIR/clang -print-resource-dir)/lib/wasip2/) mkdir -p $WASI_DIR $WASIP1_DIR $WASIP2_DIR - cp download/libclang_rt.builtins-wasm32.a $WASI_DIR - cp download/libclang_rt.builtins-wasm32.a $WASIP1_DIR - cp download/libclang_rt.builtins-wasm32.a $WASIP2_DIR + cp build/download/libclang_rt.builtins-wasm32.a $WASI_DIR + cp build/download/libclang_rt.builtins-wasm32.a $WASIP1_DIR + cp build/download/libclang_rt.builtins-wasm32.a $WASIP2_DIR TARGET_TRIPLE=wasm32-wasi make test - rm -r build TARGET_TRIPLE=wasm32-wasip1 make test - rm -r build TARGET_TRIPLE=wasm32-wasip2 make test - rm -r build TARGET_TRIPLE=wasm32-wasi-threads make test - rm -r build TARGET_TRIPLE=wasm32-wasip1-threads make test # The older version of Clang does not provide the expected symbol for the # test entrypoints: `undefined symbol: __main_argc_argv`.