Skip to content

Commit

Permalink
Include the right arch in the Linux build IDs
Browse files Browse the repository at this point in the history
  • Loading branch information
pcolby committed Jan 18, 2025
1 parent 34427ce commit eb63847
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,8 @@ jobs:
env:
CC: ${{ matrix.cc }}
CXX: ${{ matrix.cc == 'gcc' && 'g++' || 'clang++' }}
PROJECT_BUILD_ID: ${{ github.run_number }}.linux.x86-64.${{ matrix.cc }}.qt-${{ matrix.qt }}
PROJECT_BUILD_ID: "${{ github.run_number }}.linux.${{ matrix.arch == 'arm64' && 'arm64' || 'x86-64'}}\
.${{ matrix.cc }}.qt-${{ matrix.qt }}"
run: |
[[ '${{ matrix.qt }}' =~ ^[56]$ ]] ||
qtInstallDocs="$RUNNER_WORKSPACE/Qt/Docs/Qt-${QT_VERSION:-${{ matrix.qt }}}"
Expand Down

0 comments on commit eb63847

Please sign in to comment.