Skip to content

Commit 01e4520

Browse files
committed
build more
1 parent ce5b1b6 commit 01e4520

1 file changed

Lines changed: 19 additions & 0 deletions

File tree

.github/workflows/build-and-test-linux.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,25 @@ jobs:
9898
./emcc --clear-cache
9999
./test/runner test_hello_world core3.test_hello_world
100100
101+
- name: Build ALL
102+
run: |
103+
./embuilder build ALL
104+
105+
- name: Build MINIMAL (LTO)
106+
run: |
107+
./embuilder build MINIMAL --lto
108+
109+
- name: Build MINIMAL (wasm64)
110+
run: |
111+
./embuilder build MINIMAL --wasm64
112+
113+
- name: Build MINIMAL (PIC)
114+
run: |
115+
./embuilder build MINIMAL --pic
116+
117+
- name: Build MINIMAL (PIC+LTO)
118+
run: |
119+
./embuilder build MINIMAL --pic --lto
101120
102121
- name: Clean build directory
103122
run: rm -rf ~/cache/build

0 commit comments

Comments
 (0)