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:
175175 ubuntu-cpu-cmake :
176176 strategy :
177177 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+
179184 runs-on : ${{ matrix.os }}
180185
181186 steps :
@@ -242,14 +247,14 @@ jobs:
242247 run : |
243248 cp LICENSE ./build/bin/
244249 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/*
246251
247252 - name : Upload artifacts
248253 if : ${{ ( github.event_name == 'push' && github.ref == 'refs/heads/master' ) || github.event.inputs.create_release == 'true' }}
249254 uses : actions/upload-artifact@v4
250255 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
253258
254259 ubuntu-latest-cmake-sanitizer :
255260 runs-on : ubuntu-latest
You can’t perform that action at this time.
0 commit comments