test builds 8 #62
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build-linux | |
on: | |
push: | |
branches: | |
- "**" | |
jobs: | |
build-linux: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Configure toolchain | |
run: | | |
sudo apt update | |
sudo apt install valgrind cloc python3-pip python3-venv | |
- name: Configure project | |
run: > | |
cmake -S. -Bbuild | |
-DENABLE_HEAVY_TESTS=OFF | |
-DVIRGIL_C_MT_TESTING=OFF | |
-DENABLE_BENCHMARKING=ON | |
-DVIRGIL_POST_QUANTUM=ON | |
-DVIRGIL_PROGRAMS=ON | |
- name: Build for memcheck | |
run: | | |
cmake --build build -- -j$(nproc) | |
- name: Run memcheck | |
working-directory: build | |
run: | | |
ctest -T memcheck --output-on-failure | |
cat Testing/Temporary/MemoryChecker.*.log | |
- name: Build multi-threading tests | |
run: | | |
cmake -S. -Bbuild -DVIRGIL_C_MT_TESTING=ON | |
cmake --build build -- -j$(nproc) | |
- name: Run multi-threading tests | |
working-directory: build | |
run: ctest -L multi-threading --output-on-failure | |
- name: Run benchmarks | |
run: ./build/benchmarks/foundation/bench | |
- name: Calulate line of codes | |
run: cmake --build build --target cloc |