Skip to content

Commit

Permalink
Correct a step's output access syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
pcolby committed Oct 4, 2024
1 parent e32b03b commit 93be4da
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ jobs:
- { cc: gcc-14, cxx: g++-14, coverage: false }
#- { cc: gcc-14, cxx: g++-14, coverage: true }
exclude:
# GitHub's macOS 14+ gcc can only target arm64, but the Qt Online Installer only provides ARM64 from 6.2+,
# GitHub's macOS 14+ gcc can only target arm64, but the Qt Online Installer only provides ARM64 for Qt 6.2+,
# so exclude Qt 5.x (and 6.1, 6.2) with GCC on macOS 14+. Also see the `arch` step below for more details.
- { qt: '5.9.9', os: macos-14, env: { cc: gcc-14 } }
- { qt: '5.9.9', os: macos-15, env: { cc: gcc-14 } }
Expand Down Expand Up @@ -229,7 +229,7 @@ jobs:
env:
CC: ${{ matrix.env.cc }}
CXX: ${{ matrix.env.cxx }}
PROJECT_BUILD_ID: ${{ github.run_number }}.${{ matrix.os }}.${{ steps.arch.output.buildId }}.${{ matrix.env.cc }}${{ matrix.env.coverage && '-cov' || '' }}.qt-${{ matrix.qt }}
PROJECT_BUILD_ID: ${{ github.run_number }}.${{ matrix.os }}.${{ steps.arch.outputs.buildId }}.${{ matrix.env.cc }}${{ matrix.env.coverage && '-cov' || '' }}.qt-${{ matrix.qt }}
run: |
cmake -D CMAKE_BUILD_TYPE=Release \
-D CODECOV_GCOV=${{ startsWith(matrix.env.cc, 'gcc') && '/usr/local/bin/gcov-12' || '/usr/bin/gcov'}} \
Expand Down

0 comments on commit 93be4da

Please sign in to comment.