-
Notifications
You must be signed in to change notification settings - Fork 52
48 lines (38 loc) · 1012 Bytes
/
wasi.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
name: WASI
on: [push,pull_request]
jobs:
build-test:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- name: 'Free up disk space'
run: |
# Workaround for https://github.com/actions/virtual-environments/issues/709
df -h
sudo apt-get remove -y '^dotnet-.*'
sudo apt-get remove -y '^llvm-.*'
sudo apt-get remove -y 'php.*'
sudo apt-get autoremove -y
sudo apt-get clean
sudo rm -rf "/usr/local/share/boost"
sudo rm -rf /usr/share/dotnet/
sudo rm -rf "$AGENT_TOOLSDIRECTORY"
df -h
- name: Pull latest Docker images
run: |
./src/docker/pull.sh
- uses: actions/setup-node@v3
with:
node-version: '18'
- name: Install packages
run: |
npm ci
- name: Build
run: |
npm run build:wasi
- name: Test
run: |
npm run test:wasi
- name: Build WASI packages
run: |
npm run build:wasi:packages