Skip to content

Commit 8785fdb

Browse files
committed
ARM64 Artifact
1 parent 7592bbd commit 8785fdb

File tree

1 file changed

+13
-2
lines changed

1 file changed

+13
-2
lines changed

.github/workflows/cmake-multi-platform.yml

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ jobs:
3737
- os: ubuntu-latest
3838
c_compiler: clang
3939
cpp_compiler: clang++
40+
build_type: [Release]
4041
exclude:
4142
- os: windows-latest
4243
c_compiler: gcc
@@ -97,10 +98,20 @@ jobs:
9798
# 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).
9899
run: ./makePackage.sh
99100

100-
- name: Generate Artifacts
101+
- name: AMD64 Artifact
101102
uses: actions/upload-artifact@v4
102-
if: ${{ matrix.c_compiler == 'gcc' }}
103+
if: ${{ matrix.os == 'latest-ubuntu' matrix.c_compiler == 'gcc' }}
103104
with:
105+
name: amd4-deb
106+
path: |
107+
build/*.deb
108+
retention-days: 5
109+
110+
- name: ARM64 Artifact
111+
uses: actions/upload-artifact@v4
112+
if: ${{ matrix.os == 'ubuntu-24.04-arm' matrix.c_compiler == 'gcc' }}
113+
with:
114+
name: amd4-deb
104115
path: |
105116
build/*.deb
106117
retention-days: 5

0 commit comments

Comments
 (0)