Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 2 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -183,13 +183,8 @@ jobs:
- name: Build Tests
shell: bash
run: |
cmake --build build --config ${{ inputs.build-type-name }} -j${{ env.IRIS_X4_BUILD_JOBS }} ${{ inputs.compiler-builder-additional-args }} 2> >(tee stderr.log >&2)

- name: Save compilation log
uses: actions/upload-artifact@v6
with:
name: compilation_log_${{ github.run_id }}_${{ job.check_run_id }}
path: stderr.log
echo "CPPWARNINGNOTIFIER_LOG_MARKER"
cmake --build build --config ${{ inputs.build-type-name }} -j${{ env.IRIS_X4_BUILD_JOBS }} ${{ inputs.compiler-builder-additional-args }}

- name: Test
env:
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -159,13 +159,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/download-artifact@v6
- uses: iris-cpp/cpp-warning-notifier@v0.5.1
- uses: iris-cpp/cpp-warning-notifier@v0.6.2
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
IGNORE_NO_MARKER: true
RUN_ID: ${{ github.run_id }}
JOB_ID: ${{ job.check_run_id }}
PRIVATE_KEY: ${{ secrets.CPPWARNINGNOTIFIER_PRIVATE_KEY }}
ARTIFACT_REGEX: compilation_log_(?<runId>\d+)_(?<jobId>\d+)
STEP_REGEX: Build Tests
STEP_REGEX: Build .+
JOB_REGEX: '\[C\+\+(?<cppVersion>\d+)\] (?<vendorName>.+) (?<vendorVersion>.+) \((?<config>.+)\) / (?<component>.+)'
ROW_HEADERS: '["component", "vendorName", "vendorVersion", "config"]'
COLUMN_HEADER: cppVersion
Loading