From 1060c16cb42a51eca495c0e84bc28b092d654414 Mon Sep 17 00:00:00 2001 From: ClausKlein Date: Sun, 1 Dec 2024 19:13:44 +0100 Subject: [PATCH] Fix install prefix on CI --- .github/workflows/cmake.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index 3771f1a9d9..ce8d374610 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -165,15 +165,15 @@ jobs: - name: Build working-directory: asio - run: cmake --build build --config Release -j 4 + run: cmake --build build --config Debug -j 4 - name: Install working-directory: asio - run: cmake --install build --config Release --prefix prefix + run: cmake --install build --config Debug # see CMakePresets.json! --prefix stagedir - name: Test working-directory: asio/build - run: ctest --output-on-failure --no-tests=error -C Release -j 4 + run: ctest --output-on-failure --no-tests=error -C Debug -j 4 docs: # Deploy docs only when builds succeed