Skip to content

Commit 4bf8cad

Browse files
authored
Expand wasm32 testing on CI (#360)
* Expand wasm32 testing on CI Run the full `run.sh` test script to get full assertions, including that nothing in the wasm compiler-builtins is panicking. Unfortunately it's currently panicking, so this is good to weed out! * Update libm
1 parent 156fcf1 commit 4bf8cad

File tree

6 files changed

+19
-38
lines changed

6 files changed

+19
-38
lines changed

.github/workflows/main.yml

+2-29
Original file line numberDiff line numberDiff line change
@@ -7,30 +7,6 @@ jobs:
77
runs-on: ${{ matrix.os }}
88
strategy:
99
matrix:
10-
target:
11-
- aarch64-unknown-linux-gnu
12-
- arm-unknown-linux-gnueabi
13-
- arm-unknown-linux-gnueabihf
14-
- i586-unknown-linux-gnu
15-
- i686-unknown-linux-gnu
16-
- mips-unknown-linux-gnu
17-
- mips64-unknown-linux-gnuabi64
18-
- mips64el-unknown-linux-gnuabi64
19-
- mipsel-unknown-linux-gnu
20-
- powerpc-unknown-linux-gnu
21-
- powerpc64-unknown-linux-gnu
22-
- powerpc64le-unknown-linux-gnu
23-
- thumbv6m-none-eabi
24-
- thumbv7em-none-eabi
25-
- thumbv7em-none-eabihf
26-
- thumbv7m-none-eabi
27-
- wasm32-unknown-unknown
28-
- x86_64-unknown-linux-gnu
29-
- x86_64-apple-darwin
30-
- i686-pc-windows-msvc
31-
- x86_64-pc-windows-msvc
32-
- i686-pc-windows-gnu
33-
- x86_64-pc-windows-gnu
3410
include:
3511
- target: aarch64-unknown-linux-gnu
3612
os: ubuntu-latest
@@ -109,6 +85,7 @@ jobs:
10985
run: rustup update ${{ matrix.rust }} --no-self-update && rustup default ${{ matrix.rust }}
11086
shell: bash
11187
- run: rustup target add ${{ matrix.target }}
88+
- run: rustup component add llvm-tools-preview
11289
- name: Download compiler-rt reference sources
11390
run: |
11491
curl -L -o code.tar.gz https://github.com/rust-lang/llvm-project/archive/rustc/8.0-2019-03-18.tar.gz
@@ -121,13 +98,9 @@ jobs:
12198
if: matrix.os != 'ubuntu-latest'
12299
shell: bash
123100

124-
# Wasm is special and is just build as a smoke test
125-
- run: cargo build --target ${{ matrix.target }}
126-
if: matrix.target == 'wasm32-unknown-unknown'
127-
128101
# Otherwise we use our docker containers to run builds
129102
- run: cargo generate-lockfile && ./ci/run-docker.sh ${{ matrix.target }}
130-
if: matrix.target != 'wasm32-unknown-unknown' && matrix.os == 'ubuntu-latest'
103+
if: matrix.os == 'ubuntu-latest'
131104

132105
rustfmt:
133106
name: Rustfmt
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
FROM ubuntu:20.04
2+
RUN apt-get update && \
3+
apt-get install -y --no-install-recommends \
4+
gcc libc6-dev ca-certificates
5+
6+
ENV CARGO_TARGET_WASM32_UNKNOWN_UNKNOWN_RUNNER=true

ci/run.sh

+6-4
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,10 @@ case $1 in
3232
;;
3333
esac
3434

35-
NM=nm
35+
NM=$(find $(rustc --print sysroot) -name llvm-nm)
36+
if [ "$NM" = "" ]; then
37+
NM=${PREFIX}nm
38+
fi
3639

3740
if [ -d /target ]; then
3841
path=/target/${1}/debug/deps/libcompiler_builtins-*.rlib
@@ -47,8 +50,7 @@ for rlib in $(echo $path); do
4750
echo checking $rlib for duplicate symbols
4851
echo "================================================================"
4952

50-
stdout=$($PREFIX$NM -g --defined-only $rlib 2>&1)
51-
53+
stdout=$($NM -g --defined-only $rlib 2>&1)
5254
# NOTE On i586, It's normal that the get_pc_thunk symbol appears several
5355
# times so ignore it
5456
#
@@ -94,7 +96,7 @@ CARGO_PROFILE_RELEASE_LTO=true \
9496
# Ensure no references to a panicking function
9597
for rlib in $(echo $path); do
9698
set +ex
97-
$PREFIX$NM -u $rlib 2>&1 | grep panicking
99+
$NM -u $rlib 2>&1 | grep panicking
98100

99101
if test $? = 0; then
100102
exit 1

examples/intrinsics.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
extern crate panic_handler;
1616

17-
#[cfg(all(not(thumb), not(windows)))]
17+
#[cfg(all(not(thumb), not(windows), not(target_arch = "wasm32")))]
1818
#[link(name = "c")]
1919
extern "C" {}
2020

@@ -340,11 +340,11 @@ fn run() {
340340
something_with_a_dtor(&|| assert_eq!(bb(1), 1));
341341

342342
extern "C" {
343-
fn rust_begin_unwind();
343+
fn rust_begin_unwind(x: usize);
344344
}
345345
// if bb(false) {
346346
unsafe {
347-
rust_begin_unwind();
347+
rust_begin_unwind(0);
348348
}
349349
// }
350350
}

src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
extern crate core;
3232

3333
fn abort() -> ! {
34-
unsafe { core::intrinsics::abort() }
34+
core::intrinsics::abort()
3535
}
3636

3737
#[macro_use]

0 commit comments

Comments
 (0)