We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ce5b1b6 commit 01e4520Copy full SHA for 01e4520
1 file changed
.github/workflows/build-and-test-linux.yml
@@ -98,6 +98,25 @@ jobs:
98
./emcc --clear-cache
99
./test/runner test_hello_world core3.test_hello_world
100
101
+ - name: Build ALL
102
+ run: |
103
+ ./embuilder build ALL
104
+
105
+ - name: Build MINIMAL (LTO)
106
107
+ ./embuilder build MINIMAL --lto
108
109
+ - name: Build MINIMAL (wasm64)
110
111
+ ./embuilder build MINIMAL --wasm64
112
113
+ - name: Build MINIMAL (PIC)
114
115
+ ./embuilder build MINIMAL --pic
116
117
+ - name: Build MINIMAL (PIC+LTO)
118
119
+ ./embuilder build MINIMAL --pic --lto
120
121
- name: Clean build directory
122
run: rm -rf ~/cache/build
0 commit comments