From 5e63064a4ba9446226ef7c93cf83e1f3675cdafb Mon Sep 17 00:00:00 2001 From: mati Date: Mon, 24 Feb 2025 13:30:09 -0300 Subject: [PATCH] [fix] add catch2 to include path --- .github/workflows/build-debian-stable.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-debian-stable.yml b/.github/workflows/build-debian-stable.yml index da4ab64b..fe2a1bc3 100644 --- a/.github/workflows/build-debian-stable.yml +++ b/.github/workflows/build-debian-stable.yml @@ -84,8 +84,8 @@ jobs: - name: Download Catch2 header run: | if [ ! -f test/unit_tests/catch2/catch.hpp ]; then - mkdir test/unit_tests/catch2 - curl -L https://raw.githubusercontent.com/catchorg/Catch2/v2.x/single_include/catch2/catch.hpp -o test/unit_tests/catch2/catch.hpp + mkdir /usr/include/catch2 + curl -L https://raw.githubusercontent.com/catchorg/Catch2/v2.x/single_include/catch2/catch.hpp -o /usr/include/catch2/catch.hpp fi - name: Get Environment