Change CMakeLists.txt to expect Catch2 in system path to speed up builds
All checks were successful
ci/woodpecker/push/workflow Pipeline was successful

This commit is contained in:
2025-10-02 18:08:22 +03:00
committed by Emin Arslan
parent 2dd10e08d9
commit 15176cdbf6
2 changed files with 5 additions and 12 deletions

View File

@@ -6,12 +6,12 @@ steps:
- name: build
image: gcc:latest
commands: # we probably shouldn't install cmake every time
- apt update && apt install -y cmake
- apt update && apt install -y cmake catch2
- mkdir -p build/ && cd build
- cmake .. --toolchain ../toolchain/sanitize.cmake
- make
- name: test
image: ubuntu
image: gcc:latest
commands:
# Automated tests, this should not fail
- ./build/test