File tree Expand file tree Collapse file tree 1 file changed +9
-4
lines changed Expand file tree Collapse file tree 1 file changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -175,7 +175,12 @@ jobs:
175
175
ubuntu-cpu-cmake :
176
176
strategy :
177
177
matrix :
178
- os : [ubuntu-22.04, ubuntu-22.04-arm]
178
+ include :
179
+ - build : ' x64'
180
+ os : ubuntu-22.04
181
+ - build : ' arm64'
182
+ os : ubuntu-22.04-arm
183
+
179
184
runs-on : ${{ matrix.os }}
180
185
181
186
steps :
@@ -242,14 +247,14 @@ jobs:
242
247
run : |
243
248
cp LICENSE ./build/bin/
244
249
cp examples/run/linenoise.cpp/LICENSE ./build/bin/LICENSE.linenoise.cpp
245
- zip -r llama-${{ steps.tag.outputs.name }}-bin-ubuntu-x64 .zip ./build/bin/*
250
+ zip -r llama-${{ steps.tag.outputs.name }}-bin-ubuntu-${{ matrix.build }} .zip ./build/bin/*
246
251
247
252
- name : Upload artifacts
248
253
if : ${{ ( github.event_name == 'push' && github.ref == 'refs/heads/master' ) || github.event.inputs.create_release == 'true' }}
249
254
uses : actions/upload-artifact@v4
250
255
with :
251
- path : llama-${{ steps.tag.outputs.name }}-bin-ubuntu-x64 .zip
252
- name : llama-bin-ubuntu-x64 .zip
256
+ path : llama-${{ steps.tag.outputs.name }}-bin-ubuntu-${{ matrix.build }} .zip
257
+ name : llama-bin-ubuntu-${{ matrix.build }} .zip
253
258
254
259
ubuntu-latest-cmake-sanitizer :
255
260
runs-on : ubuntu-latest
You can’t perform that action at this time.
0 commit comments