summaryrefslogtreecommitdiff
path: root/ci/run.sh
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2019-12-16 07:57:52 -0800
committerAlex Crichton <alex@alexcrichton.com>2019-12-16 07:57:52 -0800
commit93743ca83972e33411c2812dc285840006d21140 (patch)
tree11f732cef09c5e70179987691ba25c05ebc3088b /ci/run.sh
parent4f11029a68040c90acf771976b019c1ef273a8cd (diff)
downloadrust-libc-93743ca83972e33411c2812dc285840006d21140.tar.gz
Update bindings for the wasm32-wasi target
This commit performs a number of updates for libc with the `wasm32-wasi` target: * Updates the `wasi-libc` repository commit used (previously known as `wasi-sysroot`) * Updates the container to Ubuntu 19.10 which has Clang 9 packaged which is all we need. * Avoids building `wasmtime` and instead downloads a precompiled binary. * Updates bindings in `src/wasi.rs` to match the current upstream state.
Diffstat (limited to 'ci/run.sh')
-rwxr-xr-xci/run.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/ci/run.sh b/ci/run.sh
index b435122c25..a0e48be5bb 100755
--- a/ci/run.sh
+++ b/ci/run.sh
@@ -89,10 +89,10 @@ if [ "$TARGET" = "x86_64-unknown-linux-gnux32" ]; then
opt="--release"
fi
-cargo test -vv $opt --no-default-features --manifest-path libc-test/Cargo.toml \
+cargo test $opt --no-default-features --manifest-path libc-test/Cargo.toml \
--target "${TARGET}"
-cargo test -vv $opt --manifest-path libc-test/Cargo.toml --target "${TARGET}"
+cargo test $opt --manifest-path libc-test/Cargo.toml --target "${TARGET}"
-cargo test -vv $opt --features extra_traits --manifest-path libc-test/Cargo.toml \
+cargo test $opt --features extra_traits --manifest-path libc-test/Cargo.toml \
--target "${TARGET}"