We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a7d694 commit 4930f6cCopy full SHA for 4930f6c
.github/workflows/web_build.yml
@@ -29,8 +29,7 @@ jobs:
29
30
- name: Build
31
run: |
32
- bash ./platforms/build-web.sh
33
- meson test -C build-web
+ ENABLE_TESTING=1 bash ./platforms/build-web.sh
34
35
# TODO upload page to gh-pages!
36
- name: Upload artifacts
platforms/build-web.sh
@@ -159,3 +159,9 @@ if [ "$COMPILE_TYPE" == "complete_rebuild" ] || [ ! -e "$BUILD_DIR" ]; then
159
fi
160
161
meson compile -C "$BUILD_DIR"
162
+
163
+if [ -n "$ENABLE_TESTING" ]; then
164
165
+ meson test -C "$BUILD_DIR"
166
167
+fi
0 commit comments