ci: working directory set for "Configure test_package CMake" step

This commit is contained in:
Mateusz Pusz
2021-04-29 17:07:24 +02:00
parent 25483cc29f
commit c45b68232a

View File

@ -173,12 +173,14 @@ jobs:
conan install ../../..
- name: Configure test_package CMake
if: matrix.config.compiler.type == 'VISUAL'
working-directory: test_package/build/${{ matrix.build_type }}
run: |
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'
shell: bash
working-directory: test_package/build/${{ matrix.build_type }}
run: |
cmake ../.. -DCMAKE_TOOLCHAIN_FILE=conan_toolchain.cmake -DCMAKE_INSTALL_PREFIX=../../../build/${{ matrix.build_type }}/test_package
- name: Build test_package