From 27b2d79a65ca90eb1cae4ad1efccc78db83dcf93 Mon Sep 17 00:00:00 2001 From: Dan Paulat Date: Fri, 29 Nov 2024 22:00:00 -0600 Subject: [PATCH] Collect artifacts for CI debug --- .github/workflows/ci.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fc3de9c5..bc83f451 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -288,3 +288,20 @@ jobs: with: name: supercell-wx-test-logs-${{ matrix.name }} path: ${{ github.workspace }}/build/Testing/ + + - name: CI Build Directory Listing + if: ${{ !cancelled() && startsWith(matrix.os, 'ubuntu') }} + shell: bash + run: | + ls -alRF ./build/ + + - name: Upload CI Build Debug + if: ${{ !cancelled() }} + uses: actions/upload-artifact@v4 + with: + name: supercell-wx-ci-debug-logs-${{ matrix.name }} + path: | + ${{ github.workspace }}/build/.ninja_log + ${{ github.workspace }}/build/build.ninja + ${{ github.workspace }}/build/CMakeCache.txt + ${{ github.workspace }}/build/compile_commands.json