File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change 6868# to run out of disk space.
6969#
7070# Mitigate this by expunging the workspace before trying to build Wasm targets.
71- if [[ -z ${toolchain_name} ]]; then
71+ if [[ -z ${toolchain_name} && -z ${DISABLE_WASM_TESTS} ]]; then
7272 # Redefine `test_args` without `--linkopt=-Wl,-v`, which breaks `wasm-ld`.
7373 #
7474 # https://github.com/llvm/llvm-project/issues/112836
Original file line number Diff line number Diff line change @@ -34,6 +34,10 @@ apt-get -qq -y install apt-utils curl libtinfo5 libxml2 pkg-config zlib1g-dev >/
3434# The above command gives some verbose output that can not be silenced easily.
3535# https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=288778
3636
37+ # The WebAssembly tests use an LLVM version that is too new for the GNU libc
38+ # distributed in Ubuntu 20.04.
39+ export DISABLE_WASM_TESTS=1
40+
3741# Run tests
3842cd /src
3943tests/scripts/run_tests.sh
You can’t perform that action at this time.
0 commit comments