From 950466614da298cfbbf93aa306249c152eafa9c5 Mon Sep 17 00:00:00 2001 From: dev0 Date: Mon, 22 Dec 2025 00:49:46 +0530 Subject: [PATCH] [WORKFLOW]: CI Update --- .github/workflows/ci.yaml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 7adc9dd..b8437c0 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -36,6 +36,13 @@ jobs: steps: - 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 run: | git clone https://github.com/microsoft/vcpkg.git C:/vcpkg @@ -56,4 +63,8 @@ jobs: call "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvars64.bat" cmake --preset ${{ matrix.target }} cmake --build --preset ${{ matrix.target }} --config Debug + + - name: Setup tmate session + if: failure() + uses: mxschmitt/action-tmate@v3