Skip to content

Commit

Permalink
missing env variable?
Browse files Browse the repository at this point in the history
  • Loading branch information
DubbleClick committed Sep 27, 2024
1 parent 18b07f0 commit 85a168c
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,17 @@ jobs:
run: |
git clone https://github.com/microsoft/vcpkg.git
.\vcpkg\bootstrap-vcpkg.bat
- name: Set VCPKG_ROOT
run: |
echo "VCPKG_ROOT=$(pwd)\vcpkg" >> $GITHUB_ENV
echo "PATH=$(pwd)\vcpkg;$PATH" >> $GITHUB_ENV
echo "PATH=$(pwd)/vcpkg:$PATH" >> $GITHUB_ENV
shell: bash

- name: Build CMake Files with vcpkg toolchain
run: cmake --preset=vcpkg
env:
VCPKG_ROOT: ${{ env.VCPKG_ROOT }}

- name: Build binaries
run: cmake --build build --config Release

0 comments on commit 85a168c

Please sign in to comment.