Skip to content

Commit

Permalink
Add arm to CI matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
rerdavies committed Jan 27, 2025
1 parent 72bc0df commit 03c4e81
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions .github/workflows/cmake-multi-platform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,16 +26,14 @@ jobs:
#
# To add more build types (Release, Debug, RelWithDebInfo, etc.) customize the build_type list.
matrix:
os: [ubuntu-latest] # windows-latest
os: [ubuntu-latest,ubuntu-24.04-arm] # windows-latest
build_type: [Release]
c_compiler: [gcc, clang] # , clang, cl
c_compiler: [gcc # , clang, cl
cpp_compiler: [g++]
include:
#- os: windows-latest
# c_compiler: cl
# cpp_compiler: cl
- os: ubuntu-latest
c_compiler: gcc
cpp_compiler: g++
- os: ubuntu-latest
c_compiler: clang
cpp_compiler: clang++
Expand Down Expand Up @@ -101,7 +99,7 @@ jobs:

- name: Generate Artifacts
uses: actions/upload-artifact@v4
if: ${{ matrix.os == 'ubuntu-latest' && matrix.c_compiler == 'gcc' }}
if: ${{ matrix.c_compiler == 'gcc' }}
with:
path: |
build/*.deb
Expand Down

0 comments on commit 03c4e81

Please sign in to comment.