Skip to content

Refactor CICD: change trigger by tag and add release note template #29

Refactor CICD: change trigger by tag and add release note template

Refactor CICD: change trigger by tag and add release note template #29

Workflow file for this run

name: CI
on:
push:
branches:
- main
tags: ['v*.*.*']
paths: ['.github/workflows/**', '**/CMakeLists.txt', '**/Makefile', '**/*.h', '**/*.hpp', '**/*.c', '**/*.cpp', '**/*.cu']
pull_request:
types: [opened, synchronize, reopened]
paths: ['**/CMakeLists.txt', '**/Makefile', '**/*.h', '**/*.hpp', '**/*.c', '**/*.cpp', '**/*.cu']
env:
BRANCH_NAME: ${{ github.head_ref || github.ref_name }}
jobs:
create-draft-release:
runs-on: ubuntu-latest
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')
permissions:
contents: write
steps:
- name: Extract tag name without v prefix
id: get_version
run: echo "VERSION=${GITHUB_REF#refs/tags/v}" >> $GITHUB_ENV
env:
GITHUB_REF: ${{ github.ref }}
- name: Create Draft Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref_name }}
release_name: ${{ env.VERSION }}
draft: true
prerelease: false
ubuntu-amd64-build:
runs-on: ubuntu-20.04
needs: create-draft-release
if: always() && (needs.create-draft-release.result == 'success' || needs.create-draft-release.result == 'skipped')
permissions:
contents: write
steps:
- name: Clone
id: checkout
uses: actions/checkout@v3
with:
submodules: recursive
- name: Dependencies
id: depends
run: |
sudo apt-get update
sudo apt-get install build-essential gcc-8
- name: Build
id: make_build
run: |
./install_deps.sh
mkdir build && cd build
cmake ..
CC=gcc-8 make -j $(nproc)
ls -la
- name: Package
shell: bash
run: |
mkdir -p nitro && mkdir -p nitro/config
cp config.json nitro/config/
cp build/nitro nitro/
zip -r nitro.zip nitro
- name: Upload binaries to release
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')
run: |
mv nitro.zip nitro-${GITHUB_REF#refs/tags/v}-linux-amd64.zip
gh release upload "${GITHUB_REF#refs/tags/v}" nitro-${GITHUB_REF#refs/tags/v}-linux-amd64.zip --repo ${{ github.repository }} --clobber
env:
GH_TOKEN: ${{ github.token }}
ubuntu-amd64-cuda-build:
runs-on: linux-gpu
needs: create-draft-release
if: always() && (needs.create-draft-release.result == 'success' || needs.create-draft-release.result == 'skipped')
permissions:
contents: write
steps:
- name: Clone
id: checkout
uses: actions/checkout@v3
with:
submodules: recursive
# - name: Dependencies
# id: depends
# run: |
# sudo apt-get update
# sudo apt-get install build-essential gcc-8 uuid-dev
- name: Build
id: make_build
run: |
./install_deps.sh
mkdir build && cd build
cmake -DLLAMA_CUBLAS=ON ..
CC=gcc-8 make -j $(nproc)
ls -la
- name: Package
shell: bash
run: |
mkdir -p nitro && mkdir -p nitro/config
cp config.json nitro/config/
cp build/nitro nitro/
zip -r nitro.zip nitro
- name: Upload binaries to release
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')
run: |
mv nitro.zip nitro-${GITHUB_REF#refs/tags/v}-linux-amd64-cuda.zip
gh release upload "${GITHUB_REF#refs/tags/v}" nitro-${GITHUB_REF#refs/tags/v}-linux-amd64-cuda.zip --repo ${{ github.repository }} --clobber
env:
GH_TOKEN: ${{ github.token }}
macOS-M-build:
runs-on: mac-silicon
needs: create-draft-release
if: always() && (needs.create-draft-release.result == 'success' || needs.create-draft-release.result == 'skipped')
permissions:
contents: write
steps:
- name: Clone
id: checkout
uses: actions/checkout@v3
with:
submodules: recursive
- name: Dependencies
id: depends
continue-on-error: true
run: |
brew update
brew install cmake gcc@8
- name: Build
id: cmake_build
run: |
./install_deps.sh
mkdir build && cd build
cmake ..
CC=gcc-8 make -j $(nproc)
ls -la
- name: Package
shell: bash
run: |
mkdir -p nitro && mkdir -p nitro/config
cp config.json nitro/config/
cp llama.cpp/ggml-metal.h nitro/
cp build/nitro nitro/
zip -r nitro.zip nitro
- name: Upload binaries to release
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')
run: |
mv nitro.zip nitro-${GITHUB_REF#refs/tags/v}-mac-arm64.zip
gh release upload "${GITHUB_REF#refs/tags/v}" nitro-${GITHUB_REF#refs/tags/v}-mac-arm64.zip --repo ${{ github.repository }} --clobber
env:
GH_TOKEN: ${{ github.token }}
macOS-Intel-build:
runs-on: macos-latest
needs: create-draft-release
if: always() && (needs.create-draft-release.result == 'success' || needs.create-draft-release.result == 'skipped')
permissions:
contents: write
steps:
- name: Clone
id: checkout
uses: actions/checkout@v3
with:
submodules: recursive
- name: Dependencies
id: depends
continue-on-error: true
run: |
brew update
- name: Build
id: cmake_build
run: |
./install_deps.sh
mkdir build && cd build
cmake -DLLAMA_METAL=OFF ..
CC=gcc-8 make -j $(nproc)
ls -la
- name: Package
shell: bash
run: |
mkdir -p nitro && mkdir -p nitro/config
cp config.json nitro/config/
cp build/nitro nitro/
zip -r nitro.zip nitro
- name: Upload binaries to release
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')
run: |
mv nitro.zip nitro-${GITHUB_REF#refs/tags/v}-mac-amd64.zip
gh release upload "${GITHUB_REF#refs/tags/v}" nitro-${GITHUB_REF#refs/tags/v}-mac-amd64.zip --repo ${{ github.repository }} --clobber
env:
GH_TOKEN: ${{ github.token }}
update_release_draft:
needs: [ubuntu-amd64-build, ubuntu-amd64-cuda-build, macOS-M-build, macOS-Intel-build]
permissions:
# write permission is required to create a github release
contents: write
# write permission is required for autolabeler
# otherwise, read permission is required at least
pull-requests: write
runs-on: ubuntu-latest
steps:
# (Optional) GitHub Enterprise requires GHE_HOST variable set
#- name: Set GHE_HOST
# run: |
# echo "GHE_HOST=${GITHUB_SERVER_URL##https:\/\/}" >> $GITHUB_ENV
# Drafts your next Release notes as Pull Requests are merged into "master"
- uses: release-drafter/release-drafter@v5
# (Optional) specify config name to use, relative to .github/. Default: release-drafter.yml
# with:
# config-name: my-config.yml
# disable-autolabeler: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}