Skip to content

Commit

Permalink
ci: try building arm on linux
Browse files Browse the repository at this point in the history
  • Loading branch information
Neverous committed Jan 28, 2025
1 parent acf92f4 commit 392fc79
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/asset.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@ jobs:
exclude:
- qt-version: ${{ inputs.compiler == 'MSVC32' && '6.2.4' || 'none' }}
- qt-version: ${{ inputs.compiler == 'MSVC32' && '6.8.1' || 'none' }}
- qt-version: ${{ endsWith(inputs.os, 'arm') && '5.12.12' || 'none' }}
- qt-version: ${{ endsWith(inputs.os, 'arm') && '5.15.2' || 'none' }}
- qt-version: ${{ endsWith(inputs.os, 'arm') && '6.2.4' || 'none' }}
steps:
- name: Download artifacts
uses: actions/download-artifact@v4
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,9 @@ jobs:
exclude:
- qt-version: ${{ inputs.compiler == 'MSVC32' && '6.2.4' || 'none' }}
- qt-version: ${{ inputs.compiler == 'MSVC32' && '6.8.1' || 'none' }}
- qt-version: ${{ endsWith(inputs.os, 'arm') && '5.12.12' || 'none' }}
- qt-version: ${{ endsWith(inputs.os, 'arm') && '5.15.2' || 'none' }}
- qt-version: ${{ endsWith(inputs.os, 'arm') && '6.2.4' || 'none' }}
steps:
- name: Checkout source code
uses: actions/checkout@v4
Expand All @@ -54,7 +57,7 @@ jobs:
continue-on-error: true

- name: Set up Qt environment
uses: jurplel/install-qt-action@v4
uses: jdpurcell/install-qt-action@v4

Check warning

Code scanning / Semgrep (reported by Codacy)

An action sourced from a third-party repository on GitHub is not pinned to a full length commit SHA. Pinning an action to a full length commit SHA is currently the only way to use an action as an immutable release. Warning

An action sourced from a third-party repository on GitHub is not pinned to a full length commit SHA. Pinning an action to a full length commit SHA is currently the only way to use an action as an immutable release.
with:
cache: true
version: ${{ matrix.qt-version }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/debug.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-20.04, ubuntu-22.04, ubuntu-24.04]
os: [ubuntu-20.04, ubuntu-22.04, ubuntu-24.04, ubuntu-24.04-arm]
compiler:
- Clang
- GCC
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-20.04, ubuntu-22.04, ubuntu-24.04]
os: [ubuntu-20.04, ubuntu-22.04, ubuntu-24.04, ubuntu-24.04-arm]
compiler:
- Clang
- GCC
Expand Down Expand Up @@ -96,7 +96,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-20.04, ubuntu-22.04, ubuntu-24.04]
os: [ubuntu-20.04, ubuntu-22.04, ubuntu-24.04, ubuntu-24.04-arm]
compiler:
- Clang
- GCC
Expand Down

0 comments on commit 392fc79

Please sign in to comment.