diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 20aed3de0..aca18db21 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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: diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6fcad0814..d5dec706e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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_(?\d+)_(?\d+) - STEP_REGEX: Build Tests + STEP_REGEX: Build .+ JOB_REGEX: '\[C\+\+(?\d+)\] (?.+) (?.+) \((?.+)\) / (?.+)' ROW_HEADERS: '["component", "vendorName", "vendorVersion", "config"]' COLUMN_HEADER: cppVersion