From 9ddf1b4bc56d0183c4a41868ecc8515f5fc2d897 Mon Sep 17 00:00:00 2001 From: Vollstrecker Date: Wed, 25 Dec 2024 10:06:14 +0100 Subject: [PATCH] CMake: Correct build directory for second workflow run. --- .github/workflows/c-std.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/c-std.yml b/.github/workflows/c-std.yml index a0e6a9e2..bc931104 100644 --- a/.github/workflows/c-std.yml +++ b/.github/workflows/c-std.yml @@ -152,7 +152,7 @@ jobs: - name: Compile source code with tests (cmake) if: matrix.builder == 'cmake' - run: cmake --build ./build --config Release + run: cmake --build ./build2 --config Release - name: Run test cases (cmake) if: matrix.builder == 'cmake'