From: Georgi Gerganov Date: Sat, 22 Feb 2025 13:03:00 +0000 (+0200) Subject: ci : fix arm upload artifacts (#12024) X-Git-Tag: upstream/0.0.4853~94 X-Git-Url: https://git.djapps.eu/?a=commitdiff_plain;h=f3e64859edb0d55d4223ead78672597cd1a218df;p=pkg%2Fggml%2Fsources%2Fllama.cpp ci : fix arm upload artifacts (#12024) * ci : fix arm upload artifacts * cont : fix archive name to use matrix --- diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 859d538c..b96e1f50 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -175,7 +175,12 @@ jobs: ubuntu-cpu-cmake: strategy: matrix: - os: [ubuntu-22.04, ubuntu-22.04-arm] + include: + - build: 'x64' + os: ubuntu-22.04 + - build: 'arm64' + os: ubuntu-22.04-arm + runs-on: ${{ matrix.os }} steps: @@ -242,14 +247,14 @@ jobs: run: | cp LICENSE ./build/bin/ cp examples/run/linenoise.cpp/LICENSE ./build/bin/LICENSE.linenoise.cpp - zip -r llama-${{ steps.tag.outputs.name }}-bin-ubuntu-x64.zip ./build/bin/* + zip -r llama-${{ steps.tag.outputs.name }}-bin-ubuntu-${{ matrix.build }}.zip ./build/bin/* - name: Upload artifacts if: ${{ ( github.event_name == 'push' && github.ref == 'refs/heads/master' ) || github.event.inputs.create_release == 'true' }} uses: actions/upload-artifact@v4 with: - path: llama-${{ steps.tag.outputs.name }}-bin-ubuntu-x64.zip - name: llama-bin-ubuntu-x64.zip + path: llama-${{ steps.tag.outputs.name }}-bin-ubuntu-${{ matrix.build }}.zip + name: llama-bin-ubuntu-${{ matrix.build }}.zip ubuntu-latest-cmake-sanitizer: runs-on: ubuntu-latest