163 lines
4.3 KiB
YAML
163 lines
4.3 KiB
YAML
name: Build and release binaries.
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
tags:
|
|
- 'v*'
|
|
- 'nightly'
|
|
pull_request:
|
|
branches: ["main" ]
|
|
paths:
|
|
- 'Cargo.toml'
|
|
- 'Cargo.lock'
|
|
- 'crates/**'
|
|
- 'ee/tabby-webserver/**'
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.head_ref || github.ref_name }}
|
|
|
|
# If this is enabled it will cancel current running and start latest
|
|
cancel-in-progress: true
|
|
|
|
env:
|
|
RUST_TOOLCHAIN: 1.73.0
|
|
|
|
jobs:
|
|
tests:
|
|
runs-on: ubuntu-latest
|
|
env:
|
|
SCCACHE_GHA_ENABLED: true
|
|
RUSTC_WRAPPER: sccache
|
|
CARGO_INCREMENTAL: 0
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
submodules: recursive
|
|
|
|
- name: Install Rust
|
|
uses: actions-rs/toolchain@v1
|
|
with:
|
|
toolchain: ${{ env.RUST_TOOLCHAIN }}
|
|
|
|
- name: Sccache cache
|
|
uses: mozilla-actions/sccache-action@v0.0.3
|
|
with:
|
|
version: "v0.4.0"
|
|
|
|
- name: Cargo registry cache
|
|
uses: actions/cache@v3
|
|
with:
|
|
key: cargo-${{ runner.os }}-${{ hashFiles('**/Cargo.toml') }}-${{ github.sha }}
|
|
restore-keys: |
|
|
cargo-${{ runner.os }}-${{ hashFiles('**/Cargo.toml') }}-
|
|
cargo-${{ runner.os }}-
|
|
path: |
|
|
~/.cargo/registry
|
|
~/.cargo/git
|
|
|
|
- run: bash ./ci/prepare_build_environment.sh
|
|
|
|
- name: Run unit tests
|
|
run: cargo test --bin tabby --lib
|
|
|
|
|
|
release-binary:
|
|
if: github.event_name != 'pull_request'
|
|
needs: tests
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
matrix:
|
|
bin: [aarch64-apple-darwin, x86_64-unknown-linux-gnu, x86_64-unknown-linux-gnu-cuda-11-7]
|
|
include:
|
|
- os: macos-latest
|
|
bin: aarch64-apple-darwin
|
|
target: aarch64-apple-darwin
|
|
- os: ubuntu-latest
|
|
bin: x86_64-unknown-linux-gnu
|
|
target: x86_64-unknown-linux-gnu
|
|
- os: ubuntu-latest
|
|
bin: x86_64-unknown-linux-gnu-cuda-11-7
|
|
cuda_version: '11.7.1'
|
|
target: x86_64-unknown-linux-gnu
|
|
|
|
env:
|
|
SCCACHE_GHA_ENABLED: true
|
|
RUSTC_WRAPPER: sccache
|
|
CARGO_INCREMENTAL: 0
|
|
|
|
steps:
|
|
- uses: Jimver/cuda-toolkit@v0.2.11
|
|
if: matrix.cuda_version
|
|
id: cuda-toolkit
|
|
with:
|
|
cuda: ${{ matrix.cuda_version }}
|
|
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
with:
|
|
submodules: recursive
|
|
|
|
- name: Install Rust
|
|
uses: actions-rs/toolchain@v1
|
|
with:
|
|
toolchain: ${{ env.RUST_TOOLCHAIN }}
|
|
target: ${{ matrix.target }}
|
|
components: clippy
|
|
|
|
- run: rustup default ${{ env.RUST_TOOLCHAIN }}
|
|
|
|
- name: Sccache cache
|
|
uses: mozilla-actions/sccache-action@v0.0.3
|
|
with:
|
|
version: "v0.4.0"
|
|
|
|
- name: Cargo registry cache
|
|
uses: actions/cache@v3
|
|
with:
|
|
key: cargo-${{ runner.os }}-${{ hashFiles('**/Cargo.toml') }}-${{ github.sha }}
|
|
restore-keys: |
|
|
cargo-${{ runner.os }}-${{ hashFiles('**/Cargo.toml') }}-
|
|
cargo-${{ runner.os }}-
|
|
path: |
|
|
~/.cargo/registry
|
|
~/.cargo/git
|
|
|
|
- run: bash ./ci/prepare_build_environment.sh
|
|
|
|
- name: Bulid release binary
|
|
if: ${{ ! matrix.cuda_version }}
|
|
run: cargo build --release --target ${{ matrix.target }} --package tabby
|
|
|
|
- name: Bulid release binary (CUDA)
|
|
if: matrix.cuda_version
|
|
run: cargo build --features cuda --release --target ${{ matrix.target }} --package tabby
|
|
|
|
- name: Rename release binary
|
|
run: mv target/${{ matrix.target }}/release/tabby tabby_${{ matrix.bin }}
|
|
|
|
- name: Upload artifacts
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
retention-days: 3
|
|
name: tabby_${{ matrix.bin }}
|
|
path: tabby_${{ matrix.bin }}
|
|
|
|
pre-release:
|
|
if: github.event_name == 'push'
|
|
needs: release-binary
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: write
|
|
steps:
|
|
- name: Download all artifacts
|
|
uses: actions/download-artifact@v3
|
|
|
|
- uses: ncipollo/release-action@v1
|
|
with:
|
|
allowUpdates: true
|
|
prerelease: true
|
|
artifacts: "tabby_*/tabby_*"
|
|
tag: ${{ github.ref_name }}
|
|
removeArtifacts: true
|