name: CI
on:
push:
branches: [master, main]
pull_request:
branches: [master, main]
permissions:
contents: read
checks: write
env:
CARGO_TERM_COLOR: always
RUSTFLAGS: "-D warnings"
jobs:
check:
name: Check + Lint + Test
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
components: clippy, rustfmt
- uses: Swatinem/rust-cache@v2
- name: Check formatting
run: cargo fmt --all -- --check
- name: Clippy
run: cargo clippy --all-targets -- -D warnings
- name: Build
run: cargo build --release
- name: Test
run: cargo test --release
- name: Security audit
uses: rustsec/audit-check@v2
with:
token: ${{ secrets.GITHUB_TOKEN }}
release:
name: Release build + sign
if: startsWith(github.ref, 'refs/tags/v')
runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
- os: ubuntu-latest
target: x86_64-unknown-linux-musl
artifact: sparrow-linux-x86_64
- os: ubuntu-latest
target: aarch64-unknown-linux-musl
artifact: sparrow-linux-aarch64
- os: macos-latest
target: x86_64-apple-darwin
artifact: sparrow-macos-x86_64
- os: macos-latest
target: aarch64-apple-darwin
artifact: sparrow-macos-arm64
- os: windows-latest
target: x86_64-pc-windows-msvc
artifact: sparrow-windows-x86_64.exe
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
targets: ${{ matrix.target }}
- uses: Swatinem/rust-cache@v2
- name: Install cross
run: cargo install cross
- name: Build release
run: cross build --release --target ${{ matrix.target }}
- name: Generate checksums
shell: bash
run: |
cd target/${{ matrix.target }}/release
sha256sum sparrow* > ${{ matrix.artifact }}.sha256
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.artifact }}
path: |
target/${{ matrix.target }}/release/sparrow*
target/${{ matrix.target }}/release/*.sha256
publish:
name: Publish release
needs: release
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/v')
steps:
- uses: actions/download-artifact@v4
with:
path: artifacts
- name: Create release
uses: softprops/action-gh-release@v1
with:
files: artifacts/**/*
generate_release_notes: true