[WORKFLOW]: CI Update

This commit is contained in:
2025-12-22 00:59:58 +05:30
parent 950466614d
commit 1c04d68119
2 changed files with 14 additions and 1 deletions

View File

@ -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