File tree 1 file changed +24
-0
lines changed
1 file changed +24
-0
lines changed Original file line number Diff line number Diff line change 25
25
- run : ./scripts/clang-format-diff.sh
26
26
env :
27
27
GITHUB_EVENT_BEFORE : ${{ github.event.before }}
28
+
28
29
build :
29
30
name : build
30
31
runs-on : ${{ matrix.os }}
67
68
run : cmake --build out --target run-c-api-tests
68
69
- name : tests
69
70
run : cmake --build out --target run-tests
71
+
72
+ build-i686 :
73
+ name : build-i686
74
+ runs-on : ubuntu-latest
75
+ steps :
76
+ - uses : actions/setup-python@v1
77
+ with :
78
+ python-version : ' 3.x'
79
+ - uses : actions/checkout@v1
80
+ with :
81
+ submodules : true
82
+ - name : install ninja (linux)
83
+ run : sudo apt-get install ninja-build
84
+ - name : mkdir
85
+ run : mkdir -p out
86
+ - name : cmake
87
+ run : cmake -S . -B out -G Ninja -DCMAKE_BUILD_TYPE=Debug -DWITH_WASI=ON -DWERROR=ON -Werror=dev -Wno-deprecated
88
+ - name : build
89
+ run : cmake --build out
90
+
70
91
emscripten :
71
92
name : emscripten
72
93
runs-on : ubuntu-latest
80
101
docker exec emscripten emcc -v
81
102
docker exec emscripten emcmake cmake .
82
103
docker exec emscripten make -j 2 VERBOSE=1
104
+
83
105
wasi :
84
106
name : wasi
85
107
runs-on : ubuntu-latest
@@ -118,6 +140,7 @@ jobs:
118
140
- run : make clang-${{ matrix.type }}-${{ matrix.sanitizer }}
119
141
- if : ${{ matrix.sanitizer }} != fuzz
120
142
run : make test-clang-${{ matrix.type }}-${{ matrix.sanitizer }}
143
+
121
144
build-wasm2c-memchecked :
122
145
name : wasm2c-memchecked
123
146
runs-on : ubuntu-latest
@@ -167,6 +190,7 @@ jobs:
167
190
run : cmake --build out --target run-c-api-tests
168
191
- name : tests
169
192
run : cmake --build out --target run-tests
193
+
170
194
build-rlbox :
171
195
name : rlbox
172
196
runs-on : ubuntu-latest
You can’t perform that action at this time.
0 commit comments