1
0
mirror of synced 2024-11-12 02:00:52 +01:00

build: Build unit tests again when needed

This commit is contained in:
WerWolv 2021-12-14 21:26:59 +01:00
parent 9cd7b746a6
commit a05d09ffea
2 changed files with 6 additions and 2 deletions

View File

@ -44,7 +44,7 @@ jobs:
-DCMAKE_INSTALL_PREFIX="$PWD/install" \
-DCMAKE_C_COMPILER_LAUNCHER=ccache -DCMAKE_CXX_COMPILER_LAUNCHER=ccache \
..
make -j 4 install
make -j4 unit_tests install
- name: 🧪 Perform Unit Tests
run: |

View File

@ -1,4 +1,8 @@
project(unit_tests)
add_subdirectory(pattern_language)
add_subdirectory(algorithms)
add_subdirectory(algorithms)
add_custom_target(unit_tests
DEPENDS pattern_language_tests algorithms_test
)