Skip to content

Commit 0eb9b32

Browse files
authored
Merge pull request #33 from simonneutert/linux-arm64
ci: adds linux arm64 artifact
2 parents 712ebb6 + b872213 commit 0eb9b32

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

.github/workflows/cicd.yaml

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ jobs:
9090
needs: build
9191
strategy:
9292
matrix:
93-
os: [ubuntu-latest, macos-latest, windows-latest]
93+
os: [ubuntu-latest, ubuntu-24.04-arm, macos-latest, windows-latest]
9494

9595
runs-on: ${{ matrix.os }}
9696

@@ -115,12 +115,19 @@ jobs:
115115
if: ${{ matrix.os == 'windows-latest' }}
116116
uses: ilammy/msvc-dev-cmd@v1
117117

118-
- name: Build Linux
118+
- name: Build Linux x86_64
119119
if: ${{ matrix.os == 'ubuntu-latest' }}
120120
shell: bash
121121
run: |
122122
./package/build-native.sh
123-
mv target/cq target/cq-native-linux
123+
mv target/cq target/cq-native-linux-x86_64
124+
125+
- name: Build Linux ARM64
126+
if: ${{ matrix.os == 'ubuntu-24.04-arm' }}
127+
shell: bash
128+
run: |
129+
./package/build-native.sh
130+
mv target/cq target/cq-native-linux-arm64
124131
125132
- name: Build OSX
126133
if: ${{ matrix.os == 'macos-latest' }}

0 commit comments

Comments
 (0)