diff options
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/ci.yml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a0f9eab..b38857b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -86,6 +86,17 @@ jobs: if: failure() && steps.build.outcome == 'failure' run: cat tools/warnings_count/warnings_setup_new.txt tools/warnings_count/warnings_assets_new.txt tools/warnings_count/warnings_disasm_new.txt tools/warnings_count/warnings_build_new.txt tools/warnings_count/warnings_compress_new.txt + - name: Generate objdiff report + run: | + . .venv/bin/activate + python3 -m mapfile_parser objdiff_report report.json --version ${{ matrix.version }} + + - name: Upload progress report artifact + uses: actions/upload-artifact@v7 + with: + name: ${{ matrix.version }}_report + path: report.json + - name: Upload map uses: actions/upload-artifact@v7 with: |
