-
Notifications
You must be signed in to change notification settings - Fork 53
116 lines (102 loc) · 3.43 KB
/
build-and-test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
name: Build
on:
workflow_call:
pull_request:
push:
branches:
- main
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Check out
uses: actions/checkout@v3
with:
submodules: "recursive"
- name: OS Setup (Ubuntu)
run: |
sudo apt-get update
sudo apt-get install -y build-essential python3.11 python3-distutils llvm-15 libclang-dev clang-15 wabt
npm i -g wasm-opt pnpm concurrently
sudo rm /usr/bin/clang
sudo rm /usr/bin/clang++
sudo ln -s /usr/bin/clang-15 /usr/bin/clang
sudo ln -s /usr/bin/clang++-15 /usr/bin/clang++
sudo ln -s /usr/bin/llvm-ar-15 /usr/bin/llvm-ar
sudo ln -s /usr/bin/llvm-nm-15 /usr/bin/llvm-nm
sudo ln -s /usr/bin/llvm-ranlib-15 /usr/bin/llvm-ranlib
- name: Tool Versions
run: |
echo clang
clang -v
echo '####################'
echo llvm-ar
llvm-ar -V
echo '####################'
echo llvm-nm
llvm-nm -V
echo '####################'
echo llvm-ranlib
llvm-ranlib -v
echo '####################'
echo wasm-opt
wasm-opt --version
echo '####################'
echo wasm-strip
wasm-strip --version
echo '####################'
echo python
python3.11 -V
- name: Install Rust
uses: dtolnay/rust-toolchain@master
with:
toolchain: "1.76"
components: "clippy,rustfmt"
- name: Setup Wasmer
uses: wasmerio/setup-wasmer@v3.1
- name: Download wasix-libc
uses: dsaltares/fetch-gh-release-asset@1.1.2
with:
repo: wasix-org/rust
file: wasix-libc.tar.gz
target: sysroot/wasix-libc.tar.gz
- name: Unpack wasix-libc
run: |
cd sysroot
tar xzf wasix-libc.tar.gz
- name: Download wasix toolchain
uses: dsaltares/fetch-gh-release-asset@1.1.2
with:
repo: wasix-org/rust
file: rust-toolchain-x86_64-unknown-linux-gnu.tar.gz
target: wasix-rust-toolchain/toolchain.tar.gz
- name: Install wasix toolchain
run: |
cd wasix-rust-toolchain
tar xzf toolchain.tar.gz
chmod +x bin/*
chmod +x lib/rustlib/x86_64-unknown-linux-gnu/bin/*
chmod +x lib/rustlib/x86_64-unknown-linux-gnu/bin/gcc-ld/*
rustup toolchain link wasix .
- name: Build
run: |
export WASI_SYSROOT=$(pwd)/sysroot/wasix-libc/sysroot32
bash build.sh
- name: build test suite JS app
run: |
cd test-suite/js-test-app
pnpm i
pnpm run build
- name: Run API test suite
# note: we're counting on wasmer compiling and running WinterJS faster
# that cargo builds the test-suite app. This may not be the case forever.
run: |
conc --kill-others --success "command-1" \
"wasmer run build-artifacts/winterjs-wasm/winterjs.wasm --net --mapdir /app:./test-suite/js-test-app/dist -- serve /app/bundle.js" \
"cd test-suite && cargo run"
echo All tests are passing! 🎉
- name: Archive build output
uses: actions/upload-artifact@v3
with:
name: winterjs-wasm
path: target/wasm32-wasmer-wasi/release/winterjs.wasm