Skip to content

Commit

Permalink
Try to fix vcpkg install directory
Browse files Browse the repository at this point in the history
  • Loading branch information
ekilmer committed Mar 30, 2023
1 parent 8e7afae commit 893f0ee
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,7 @@ jobs:
-D BUILD_SHARED_LIBS=${{ matrix.shared }}
-D VCPKG_HOST_TRIPLET=${{ matrix.triplet }}
-D VCPKG_TARGET_TRIPLET=${{ matrix.triplet }}
-D "VCPKG_INSTALLED_DIR=${{ github.workspace }}/vcpkg_installed"

- name: Build
run: cmake --build build --config Release -j 2
Expand All @@ -176,7 +177,8 @@ jobs:
-Dmaat_DIR=${{ github.workspace }}/prefix/share/maat \
"-DCMAKE_TOOLCHAIN_FILE=${VCPKG_ROOT}/scripts/buildsystems/vcpkg.cmake" \
-DVCPKG_HOST_TRIPLET=${{ matrix.triplet }} \
-DVCPKG_TARGET_TRIPLET=${{ matrix.triplet }}
-DVCPKG_TARGET_TRIPLET=${{ matrix.triplet }} \
"-DVCPKG_INSTALLED_DIR=${{ github.workspace }}/vcpkg_installed"
cmake --build build
./build/maat_find_package_test
Expand Down

0 comments on commit 893f0ee

Please sign in to comment.