[WORKFLOW]: CI Update
This commit is contained in:
11
.github/workflows/ci.yaml
vendored
11
.github/workflows/ci.yaml
vendored
@ -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
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user