|
@@ -8,7 +8,15 @@ jobs:
|
|
|
strategy:
|
|
|
matrix:
|
|
|
os: [ubuntu-latest, macos-latest, windows-latest]
|
|
|
+ arch: [amd64, arm64]
|
|
|
+ exclude:
|
|
|
+ - os: ubuntu-latest
|
|
|
+ arch: arm64
|
|
|
+ - os: windows-latest
|
|
|
+ arch: arm64
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
+ env:
|
|
|
+ GOARCH: ${{ matrix.arch }}
|
|
|
steps:
|
|
|
- uses: actions/checkout@v4
|
|
|
- uses: actions/setup-go@v4
|
|
@@ -33,7 +41,7 @@ jobs:
|
|
|
- run: go generate -x ./...
|
|
|
- uses: actions/upload-artifact@v4
|
|
|
with:
|
|
|
- name: ${{ matrix.os }}-libraries
|
|
|
+ name: ${{ matrix.os }}-${{ matrix.arch }}-libraries
|
|
|
path: |
|
|
|
llm/llama.cpp/build/**/lib/*
|
|
|
lint:
|
|
@@ -41,7 +49,18 @@ jobs:
|
|
|
strategy:
|
|
|
matrix:
|
|
|
os: [ubuntu-latest, macos-latest, windows-latest]
|
|
|
+ arch: [amd64, arm64]
|
|
|
+ exclude:
|
|
|
+ - os: ubuntu-latest
|
|
|
+ arch: arm64
|
|
|
+ - os: windows-latest
|
|
|
+ arch: arm64
|
|
|
+ - os: macos-latest
|
|
|
+ arch: amd64
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
+ env:
|
|
|
+ GOARCH: ${{ matrix.arch }}
|
|
|
+ CGO_ENABLED: "1"
|
|
|
steps:
|
|
|
- uses: actions/checkout@v4
|
|
|
with:
|
|
@@ -52,7 +71,7 @@ jobs:
|
|
|
cache: false
|
|
|
- uses: actions/download-artifact@v4
|
|
|
with:
|
|
|
- name: ${{ matrix.os }}-libraries
|
|
|
+ name: ${{ matrix.os }}-${{ matrix.arch }}-libraries
|
|
|
path: llm/llama.cpp/build
|
|
|
- uses: golangci/golangci-lint-action@v3
|
|
|
test:
|
|
@@ -60,6 +79,12 @@ jobs:
|
|
|
strategy:
|
|
|
matrix:
|
|
|
os: [ubuntu-latest, macos-latest, windows-latest]
|
|
|
+ arch: [amd64, arm64]
|
|
|
+ exclude:
|
|
|
+ - os: ubuntu-latest
|
|
|
+ arch: arm64
|
|
|
+ - os: windows-latest
|
|
|
+ arch: arm64
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
steps:
|
|
|
- uses: actions/checkout@v4
|
|
@@ -72,7 +97,7 @@ jobs:
|
|
|
- run: go get
|
|
|
- uses: actions/download-artifact@v4
|
|
|
with:
|
|
|
- name: ${{ matrix.os }}-libraries
|
|
|
+ name: ${{ matrix.os }}-${{ matrix.arch }}-libraries
|
|
|
path: llm/llama.cpp/build
|
|
|
- run: go build
|
|
|
- run: go test -v ./...
|