From 82f018f216f74849ad3c94e42ba50967c71a384f Mon Sep 17 00:00:00 2001 From: Mateusz Pusz Date: Tue, 2 Aug 2022 08:39:59 +0200 Subject: [PATCH] ci: `working-directory` fixed --- .github/workflows/ci-test-package-cmake.yml | 4 ++-- .github/workflows/documentation.yml | 2 -- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci-test-package-cmake.yml b/.github/workflows/ci-test-package-cmake.yml index de568789..d14e6d3a 100644 --- a/.github/workflows/ci-test-package-cmake.yml +++ b/.github/workflows/ci-test-package-cmake.yml @@ -246,7 +246,7 @@ jobs: - name: Build test_package CMake (installation) if: matrix.config.compiler.type == 'VISUAL' shell: cmd - working-directory: test_package/build/${{ matrix.build_type }} + working-directory: test_package run: | ..\build\generators\conanbuild.bat cmake --preset default -DCMAKE_INSTALL_PREFIX=../out -Bbuild/install @@ -254,7 +254,7 @@ jobs: - name: Build test_package CMake (installation) if: matrix.config.compiler.type != 'VISUAL' shell: bash - working-directory: test_package/build/${{ matrix.build_type }} + working-directory: test_package run: | cmake --preset default -DCMAKE_INSTALL_PREFIX=../out -Bbuild/install cmake --build build/install --config ${{ matrix.build_type }} diff --git a/.github/workflows/documentation.yml b/.github/workflows/documentation.yml index cabc30cb..68a3f979 100644 --- a/.github/workflows/documentation.yml +++ b/.github/workflows/documentation.yml @@ -80,11 +80,9 @@ jobs: run: | conan install . -s compiler.cppstd=20 -s compiler.libcxx=libstdc++11 -c tools.cmake.cmaketoolchain:generator="Ninja Multi-Config" -e mp-units:CONAN_RUN_TESTS=True -b outdated -u - name: Configure CMake - working-directory: build run: | cmake --preset default - name: Generate documentation - working-directory: build run: | cmake --build --preset Release --target documentation - name: Deploy documentation