[WORKFLOW]: CI Update

This commit is contained in:
2025-12-22 00:49:46 +05:30
parent 1a6d528c1b
commit 950466614d

View File

@ -36,6 +36,13 @@ jobs:
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- name: Upload Error Log
if: always() # Run even if the build failed
uses: actions/upload-artifact@v4
with:
name: error-log
path: D:\a\IACore\IACore\out\build\windows-x64\vcpkg_installed\vcpkg\blds\detect_compiler\config-windows-x64-clang-out.log
- name: Setup VCPKG - name: Setup VCPKG
run: | run: |
git clone https://github.com/microsoft/vcpkg.git C:/vcpkg git clone https://github.com/microsoft/vcpkg.git C:/vcpkg
@ -57,3 +64,7 @@ jobs:
cmake --preset ${{ matrix.target }} cmake --preset ${{ matrix.target }}
cmake --build --preset ${{ matrix.target }} --config Debug cmake --build --preset ${{ matrix.target }} --config Debug
- name: Setup tmate session
if: failure()
uses: mxschmitt/action-tmate@v3