Prepare 0.5.0 release #91
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Binaries | |
on: | |
push: | |
branches: ["main"] | |
tags: ["*"] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
release-linux-binaries: | |
permissions: | |
contents: "read" | |
id-token: "write" | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
target: [x86_64-unknown-linux-gnu, x86_64-unknown-linux-musl, aarch64-unknown-linux-gnu, aarch64-unknown-linux-musl] | |
include: | |
- target: x86_64-unknown-linux-gnu | |
- target: aarch64-unknown-linux-gnu | |
dependencies: gcc-aarch64-linux-gnu | |
- target: x86_64-unknown-linux-musl | |
dependencies: musl-tools | |
docker: registry.gitlab.com/rust_musl_docker/image:stable-latest | |
options: -v /home/runner/work/radicle-tui/radicle-tui:/workdir -v /home/runner/.cargo/git:/root/.cargo/git -v /home/runner/.cargo/registry:/root/.cargo/registry | |
- target: aarch64-unknown-linux-musl | |
docker: messense/rust-musl-cross:aarch64-musl | |
options: -v /home/runner/work/radicle-tui/radicle-tui:/home/rust/src -v /home/runner/.cargo/git:/root/.cargo/git -v /home/runner/.cargo/registry:/root/.cargo/registry | |
steps: | |
- name: Checkout source code | |
uses: actions/checkout@v4 | |
- name: Configure build cache | |
uses: actions/cache@v4 | |
with: | |
path: | | |
~/.cargo/registry | |
~/.cargo/git | |
target | |
key: cargo-${{ matrix.target }}-${{ hashFiles('**/Cargo.lock') }} | |
- uses: dtolnay/[email protected] | |
- name: Build release binaries | |
if: contains(matrix.target, 'gnu') | |
run: | | |
sudo apt-get update --yes && sudo apt-get install --yes ${{ matrix.dependencies }} | |
rustup target add "${{ matrix.target }}" | |
cargo build --release --target "${{ matrix.target }}" | |
- name: Build release binaries (statically linked) | |
if: contains(matrix.target, 'musl') | |
uses: addnab/docker-run-action@v3 | |
with: | |
image: ${{ matrix.docker }} | |
options: ${{ matrix.options }} | |
run: | | |
rustup target add "${{ matrix.target }}" | |
cargo build --release --target "${{ matrix.target }}" | |
- name: Upload release binaries | |
uses: actions/upload-artifact@v4 | |
with: | |
name: radicle-tui_${{ github.ref_name }}_${{ matrix.target }} | |
path: target/${{ matrix.target }}/release/rad-tui | |
release-macos-binaries: | |
permissions: | |
contents: "read" | |
id-token: "write" | |
runs-on: macos-12 | |
strategy: | |
matrix: | |
target: | |
- aarch64-apple-darwin | |
- x86_64-apple-darwin | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Configure build cache | |
uses: actions/cache@v4 | |
with: | |
path: | | |
~/.cargo/registry | |
~/.cargo/git | |
target | |
key: cargo-${{ matrix.target }}-${{ hashFiles('**/Cargo.lock') }} | |
- uses: dtolnay/[email protected] | |
- name: Build release binaries | |
run: | | |
rustup target add "${{ matrix.target }}" | |
cargo build --release --target "${{ matrix.target }}" | |
- name: Upload release binaries | |
uses: actions/upload-artifact@v4 | |
with: | |
name: radicle-tui_${{ github.ref_name }}_${{ matrix.target }} | |
path: target/${{ matrix.target }}/release/rad-tui |