From 8785fdb11d6f10629ad1930b3ebf265af4d4f948 Mon Sep 17 00:00:00 2001 From: "Robin E. R. Davies" Date: Mon, 27 Jan 2025 16:02:20 -0500 Subject: [PATCH] ARM64 Artifact --- .github/workflows/cmake-multi-platform.yml | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cmake-multi-platform.yml b/.github/workflows/cmake-multi-platform.yml index 458ca93..1ad8ff8 100644 --- a/.github/workflows/cmake-multi-platform.yml +++ b/.github/workflows/cmake-multi-platform.yml @@ -37,6 +37,7 @@ jobs: - os: ubuntu-latest c_compiler: clang cpp_compiler: clang++ + build_type: [Release] exclude: - os: windows-latest c_compiler: gcc @@ -97,10 +98,20 @@ jobs: # Package your program with the given configuration. Note that --config is needed because the default Windows generator is a multi-config generator (Visual Studio generator). run: ./makePackage.sh - - name: Generate Artifacts + - name: AMD64 Artifact uses: actions/upload-artifact@v4 - if: ${{ matrix.c_compiler == 'gcc' }} + if: ${{ matrix.os == 'latest-ubuntu' matrix.c_compiler == 'gcc' }} with: + name: amd4-deb + path: | + build/*.deb + retention-days: 5 + + - name: ARM64 Artifact + uses: actions/upload-artifact@v4 + if: ${{ matrix.os == 'ubuntu-24.04-arm' matrix.c_compiler == 'gcc' }} + with: + name: amd4-deb path: | build/*.deb retention-days: 5