From 4be96e76a02402792deda02adfcf9d939b7b0506 Mon Sep 17 00:00:00 2001 From: Mateusz Pusz Date: Thu, 29 Apr 2021 20:14:01 +0200 Subject: [PATCH] ci: calling conanvcvars.bat fixed --- .github/workflows/ci-test-package-cmake.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-test-package-cmake.yml b/.github/workflows/ci-test-package-cmake.yml index 4cfcb11f..eb8871fe 100644 --- a/.github/workflows/ci-test-package-cmake.yml +++ b/.github/workflows/ci-test-package-cmake.yml @@ -154,7 +154,7 @@ jobs: shell: cmd working-directory: build/${{ matrix.build_type }} run: | - conanvcvars.bat + call conanvcvars.bat cmake ../../src -DCMAKE_TOOLCHAIN_FILE=conan_toolchain.cmake - name: Configure mp-units CMake if: matrix.config.compiler.type != 'VISUAL' @@ -177,7 +177,7 @@ jobs: shell: cmd working-directory: test_package/build/${{ matrix.build_type }} run: | - conanvcvars.bat + call conanvcvars.bat cmake ../.. -DCMAKE_TOOLCHAIN_FILE=conan_toolchain.cmake -DCMAKE_INSTALL_PREFIX=../../../build/${{ matrix.build_type }}/test_package - name: Configure test_package CMake if: matrix.config.compiler.type != 'VISUAL'