summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorSam Clegg <sbc@chromium.org>2019-12-03 16:48:34 -0600
committerGitHub <noreply@github.com>2019-12-03 16:48:34 -0600
commit4191fc9e5d65f31ca7538b2a585d251b3ba07ac3 (patch)
tree3d0dbefc2c8deb40a2e7aa2ddd8317a2681007f9 /.github
parentb807819d5501ee7ba22a178d3acfb8fa6d6bcde7 (diff)
downloadwabt-4191fc9e5d65f31ca7538b2a585d251b3ba07ac3.tar.gz
wabt-4191fc9e5d65f31ca7538b2a585d251b3ba07ac3.tar.bz2
wabt-4191fc9e5d65f31ca7538b2a585d251b3ba07ac3.zip
Split run-unittests out as seperate target (#1255)
New `check` target now runs other. This allows for github actions to show unittests and system tests as separate steps. Also a couple of CMakeLists.txt cleanups: - Don't use add_definition to add `-fno-exceptions`, this is a C++-only flag. - Lowercase the name of the `sanitizer` function. - Remove opcode.def from list of library input file. On windows when building a DLL .def files are assumed to be windows DLL .def files, which this is not. This change is split out from #1250
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build.yml4
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 8c7d2db1..beb18a3f 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -23,5 +23,7 @@ jobs:
working-directory: out
- name: build
run: cmake --build out
- - name: test
+ - name: unittests
+ run: cmake --build out --target run-unittests
+ - name: tests
run: cmake --build out --target run-tests