2023-05-23 15:12:48 +00:00
|
|
|
name: Build and Release
|
|
|
|
|
|
|
|
on: push
|
|
|
|
|
2023-05-23 19:47:47 +00:00
|
|
|
permissions:
|
|
|
|
contents: write
|
|
|
|
|
2023-05-23 15:12:48 +00:00
|
|
|
jobs:
|
|
|
|
build-linux:
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
include:
|
|
|
|
- build: 'avx2'
|
|
|
|
defines: ''
|
|
|
|
- build: 'avx'
|
|
|
|
defines: '-DLLAMA_AVX2=OFF'
|
|
|
|
- build: 'avx512'
|
|
|
|
defines: '-DLLAMA_AVX512=ON'
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Clone
|
2023-10-21 06:55:44 +00:00
|
|
|
uses: actions/checkout@v4
|
2023-05-29 21:11:29 +00:00
|
|
|
with:
|
2023-05-23 15:12:48 +00:00
|
|
|
submodules: true
|
2023-08-23 23:18:58 +00:00
|
|
|
- uses: actions/setup-go@v4
|
|
|
|
with:
|
|
|
|
go-version: '>=1.21.0'
|
2023-05-23 15:12:48 +00:00
|
|
|
- name: Dependencies
|
|
|
|
run: |
|
|
|
|
sudo apt-get update
|
|
|
|
sudo apt-get install build-essential ffmpeg
|
2023-10-16 19:46:29 +00:00
|
|
|
|
|
|
|
git clone --recurse-submodules -b v1.58.0 --depth 1 --shallow-submodules https://github.com/grpc/grpc && \
|
|
|
|
cd grpc && mkdir -p cmake/build && cd cmake/build && cmake -DgRPC_INSTALL=ON \
|
|
|
|
-DgRPC_BUILD_TESTS=OFF \
|
|
|
|
../.. && sudo make -j12 install
|
|
|
|
|
2023-05-23 15:12:48 +00:00
|
|
|
- name: Build
|
|
|
|
id: build
|
|
|
|
env:
|
2023-05-29 21:11:29 +00:00
|
|
|
CMAKE_ARGS: "${{ matrix.defines }}"
|
2023-05-23 15:12:48 +00:00
|
|
|
BUILD_ID: "${{ matrix.build }}"
|
|
|
|
run: |
|
2023-06-03 21:46:07 +00:00
|
|
|
STATIC=true make dist
|
2023-05-23 15:12:48 +00:00
|
|
|
- uses: actions/upload-artifact@v3
|
|
|
|
with:
|
|
|
|
name: ${{ matrix.build }}
|
|
|
|
path: release/
|
|
|
|
- name: Release
|
|
|
|
uses: softprops/action-gh-release@v1
|
|
|
|
if: startsWith(github.ref, 'refs/tags/')
|
|
|
|
with:
|
|
|
|
files: |
|
|
|
|
release/*
|
|
|
|
|
|
|
|
build-macOS:
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
include:
|
|
|
|
- build: 'avx2'
|
|
|
|
defines: ''
|
|
|
|
- build: 'avx'
|
|
|
|
defines: '-DLLAMA_AVX2=OFF'
|
|
|
|
- build: 'avx512'
|
|
|
|
defines: '-DLLAMA_AVX512=ON'
|
|
|
|
runs-on: macOS-latest
|
|
|
|
steps:
|
|
|
|
- name: Clone
|
2023-10-21 06:55:44 +00:00
|
|
|
uses: actions/checkout@v4
|
2023-05-29 21:11:29 +00:00
|
|
|
with:
|
2023-05-23 15:12:48 +00:00
|
|
|
submodules: true
|
2023-08-23 23:18:58 +00:00
|
|
|
- uses: actions/setup-go@v4
|
|
|
|
with:
|
|
|
|
go-version: '>=1.21.0'
|
2023-10-16 19:46:29 +00:00
|
|
|
- name: Dependencies
|
|
|
|
run: |
|
|
|
|
git clone --recurse-submodules -b v1.58.0 --depth 1 --shallow-submodules https://github.com/grpc/grpc && \
|
|
|
|
cd grpc && mkdir -p cmake/build && cd cmake/build && cmake -DgRPC_INSTALL=ON \
|
|
|
|
-DgRPC_BUILD_TESTS=OFF \
|
|
|
|
../.. && make -j12 install && rm -rf grpc
|
2023-05-23 15:12:48 +00:00
|
|
|
- name: Build
|
|
|
|
id: build
|
|
|
|
env:
|
2023-05-29 21:11:29 +00:00
|
|
|
CMAKE_ARGS: "${{ matrix.defines }}"
|
2023-05-23 15:12:48 +00:00
|
|
|
BUILD_ID: "${{ matrix.build }}"
|
|
|
|
run: |
|
2023-10-16 19:46:29 +00:00
|
|
|
export C_INCLUDE_PATH=/usr/local/include
|
|
|
|
export CPLUS_INCLUDE_PATH=/usr/local/include
|
2023-05-23 15:12:48 +00:00
|
|
|
make dist
|
|
|
|
- uses: actions/upload-artifact@v3
|
|
|
|
with:
|
|
|
|
name: ${{ matrix.build }}
|
|
|
|
path: release/
|
|
|
|
- name: Release
|
|
|
|
uses: softprops/action-gh-release@v1
|
|
|
|
if: startsWith(github.ref, 'refs/tags/')
|
|
|
|
with:
|
|
|
|
files: |
|
|
|
|
release/*
|