File tree 3 files changed +11
-2
lines changed
docker/wasm32-unknown-emscripten
3 files changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -53,7 +53,8 @@ matrix:
53
53
- env : TARGET=arm-unknown-linux-musleabihf
54
54
- env : TARGET=aarch64-unknown-linux-gnu
55
55
- env : TARGET=aarch64-unknown-linux-musl
56
- rust : beta
56
+ # FIXME(#856)
57
+ rust : 1.22.1
57
58
- os : osx
58
59
osx_image : xcode8.2
59
60
env : TARGET=i386-apple-ios
Original file line number Diff line number Diff line change 7
7
dir=$( dirname $me )
8
8
file=$( basename $me )
9
9
10
+ if echo $file | grep -q wasm; then
11
+ exit 0 # FIXME(rust-lang/cargo#4750)
12
+ fi
13
+
10
14
cd $dir
11
15
exec node $file " $@ "
Original file line number Diff line number Diff line change @@ -41,7 +41,11 @@ if [ "$QEMU" != "" ]; then
41
41
42
42
# Do the standard rigamarole of cross-compiling an executable and then the
43
43
# script to run just executes the binary.
44
- cargo build --manifest-path libc-test/Cargo.toml --target $TARGET --tests
44
+ cargo build \
45
+ --manifest-path libc-test/Cargo.toml \
46
+ --target $TARGET \
47
+ --test main
48
+ rm $CARGO_TARGET_DIR /$TARGET /debug/main-* .d
45
49
cp $CARGO_TARGET_DIR /$TARGET /debug/main-* $tmpdir /mount/libc-test
46
50
echo ' exec $1/libc-test' > $tmpdir /mount/run.sh
47
51
You can’t perform that action at this time.
0 commit comments