Skip to content

Commit

Permalink
add tests to ci
Browse files Browse the repository at this point in the history
  • Loading branch information
williamh committed Apr 10, 2022
1 parent 20f497f commit 8209c97
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 4 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/ci-alpine-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ jobs:
- run: meson setup builddir/
env:
CC: gcc
- run: ninja -C builddir
- run: meson compile -C builddir
env:
CC: gcc
- run: meson test -C builddir
env:
CC: gcc
10 changes: 8 additions & 2 deletions .github/workflows/ci-ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,10 @@ jobs:
- run: meson setup builddir/
env:
CC: gcc
- run: ninja -C builddir
- run: meson compile -C builddir
env:
CC: gcc
- run: meson test -C builddir
env:
CC: gcc

Expand All @@ -27,6 +30,9 @@ jobs:
- run: meson setup builddir/
env:
CC: clang
- run: ninja -C builddir
- run: meson compile -C builddir
env:
CC: clang
- run: meson test -C builddir
env:
CC: clang
2 changes: 1 addition & 1 deletion ci/cirrus.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ set -x

meson build
meson compile -C build
# gmake test
meson test -C build

0 comments on commit 8209c97

Please sign in to comment.