diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index b8437c0..07f51f8 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -21,6 +21,12 @@ jobs: steps: - uses: actions/checkout@v4 + - name: Update Vcpkg Repo + run: | + cd /opt/vcpkg + git fetch --all + git pull origin master + - name: Configure run: cmake --preset ${{ matrix.target }} @@ -36,6 +42,13 @@ jobs: steps: - uses: actions/checkout@v4 + - uses: ilammy/msvc-dev-cmd@v1 + with: + arch: x64 + + - name: Add Clang to PATH + run: echo "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\Llvm\x64\bin" >> $env:GITHUB_PATH + - name: Upload Error Log if: always() # Run even if the build failed uses: actions/upload-artifact@v4 diff --git a/vcpkg.json b/vcpkg.json index 8ff5ea3..a72aad5 100644 --- a/vcpkg.json +++ b/vcpkg.json @@ -1,7 +1,7 @@ { "name": "iacore", "version": "0.1.0", - "builtin-baseline": "84bab45d415d22042bd0b9081aea57f362da3f35", + "builtin-baseline": "a1296eb51001e74ebdb6e6c5567b43a94dfc2859", "dependencies": [ "openssl", "zlib-ng",