Skip to content

Commit

Permalink
github actions now testing all targets (gcc + clang + clang-tt)
Browse files Browse the repository at this point in the history
  • Loading branch information
JPenuchot committed Jul 18, 2023
1 parent 5aed1e8 commit c5c557e
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 4 deletions.
10 changes: 8 additions & 2 deletions .github/actions/run-tests-archlinux/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,12 @@ cmake --build --preset release --target test-all

cmake --build --preset release --target install

cd example || exit
cd example

cmake --preset release
cmake --build --preset release --target ctbench-graph-all
cmake --preset release-clang
cmake --preset release-clang-tt

cmake --build --preset release
cmake --build --preset release-clang
cmake --build --preset release-clang-tt
10 changes: 8 additions & 2 deletions .github/actions/run-tests-ubuntu/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,13 @@ cmake --build --preset release --target test-all

cmake --build --preset release --target install

cd example || exit
cd example

cmake --preset release
cmake --build --preset release --target ctbench-graph-all
cmake --preset release-clang
cmake --preset release-clang-tt

cmake --build --preset release
cmake --build --preset release-clang
cmake --build --preset release-clang-tt

0 comments on commit c5c557e

Please sign in to comment.