diff --git a/.github/workflows/cmake-multi-platform.yml b/.github/workflows/cmake-multi-platform.yml index 084ef21..1afe930 100644 --- a/.github/workflows/cmake-multi-platform.yml +++ b/.github/workflows/cmake-multi-platform.yml @@ -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++ @@ -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