Skip to content

Commit

Permalink
chore(ci): enable more verbose cmocka tests.
Browse files Browse the repository at this point in the history
Signed-off-by: Federico Di Pierro <nierro92@gmail.com>
  • Loading branch information
FedeDP committed Jun 9, 2023
1 parent 60c13a1 commit fe2e7c4
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,31 +21,31 @@ jobs:
mkdir build && cd build
cmake -DBUILD_SAMPLES=On -DBUILD_TESTS=On ..
make package
ctest -V
ctest -VV --stop-on-failure
cmake -DBUILD_OOT_TEST=On ..
sudo make install
- name: Build and test FS
run: |
mkdir build_fs && cd build_fs
cmake -DBUILD_TESTS=On -DBUILD_SAMPLES=On -DWITH_FS=On ..
make package
ctest -V
ctest -VV --stop-on-failure
cmake -DBUILD_OOT_TEST=On ..
sudo make install
- name: Build and test libkqueue
run: |
mkdir build_kqueue && cd build_kqueue
cmake -DBUILD_SAMPLES=On -DBUILD_TESTS=On -DWITH_LIBKQUEUE=true -DWITH_VALGRIND=false ..
make package
ctest -V
ctest -VV --stop-on-failure
cmake -DBUILD_OOT_TEST=On ..
sudo make install
- name: Build and test liburing
run: |
mkdir build_uring && cd build_uring
cmake -DBUILD_SAMPLES=On -DBUILD_TESTS=On -DWITH_LIBURING=true -DWITH_VALGRIND=false ..
make package
ctest -V
ctest -VV --stop-on-failure
cmake -DBUILD_OOT_TEST=On ..
sudo make install
Expand All @@ -70,14 +70,14 @@ jobs:
mkdir build && cd build
cmake -DBUILD_SAMPLES=On -DBUILD_TESTS=On -DBUILD_OOT_TEST=true ..
make
ctest -V
ctest -VV --stop-on-failure
make install
cd ..
mkdir build_fs && cd build_fs
cmake -DBUILD_SAMPLES=On -DBUILD_TESTS=On -DBUILD_OOT_TEST=true -DWITH_FS=true ..
make
kldload fusefs
ctest -V
ctest -VV --stop-on-failure
make install
build-osx-amd64:
Expand All @@ -94,4 +94,4 @@ jobs:
mkdir -p build
cd build && cmake -DBUILD_SAMPLES=On -DBUILD_TESTS=On ..
cmake --build .
ctest -V
ctest -VV --stop-on-failure

0 comments on commit fe2e7c4

Please sign in to comment.