Skip to content

default-release

default-release #2

# The way this works is the following:
#
# The create-release job runs purely to initialize the GitHub release itself
# and to output upload_url for the following job.
#
# The build-release job runs only once create-release is finished. It gets the
# release upload URL from create-release job outputs, then builds the release
# executables for each supported platform and attaches them as release assets
# to the previously created release.
#
# The key here is that we create the release only once.
#
# Reference:
# https://eugene-babichenko.github.io/blog/2020/05/09/github-actions-cross-platform-auto-releases/
name: default-release
on:
workflow_call:
workflow_dispatch:
env:
BIN_NAME: observer_ward
jobs:
build-release:
name: build-release
strategy:
fail-fast: false
matrix:
build: [linux, macos, macos_m1, win-msvc, linux-arm-v7, linux-aarch64]
include:
- build: linux
os: ubuntu-latest
rust: stable
target: x86_64-unknown-linux-musl
file: observer_ward_amd64
- build: macos
os: macos-latest
rust: stable
target: x86_64-apple-darwin
file: observer_ward_darwin
- build: macos_m1
os: macos-latest
rust: stable
target: aarch64-apple-darwin
file: observer_ward_aarch64_darwin
- build: win-msvc
os: windows-latest
rust: stable
target: i686-pc-windows-msvc
file: observer_ward.exe
- build: linux-arm-v7
os: ubuntu-latest
rust: stable
target: armv7-unknown-linux-gnueabihf
file: observer_ward_armv7
- build: linux-aarch64
os: ubuntu-latest
rust: stable
target: aarch64-unknown-linux-gnu
file: observer_ward_aarch64
runs-on: ${{ matrix.os }}
steps:
- name: Checkout repository
uses: actions/checkout@v2
with:
fetch-depth: 1
- name: Cache
uses: Swatinem/rust-cache@v1
- name: Install packages (Ubuntu)
if: matrix.os == 'ubuntu-latest'
run: |
sudo apt-get update
sudo apt-get install -y gcc-multilib xz-utils liblz4-tool libc6-dev libssl-dev musl-tools pkg-config patchelf
sudo apt-get install -y gcc-aarch64-linux-gnu gcc-arm-linux-gnueabihf
sed -i -e "s/^version = .*/version = \"`date +'%-Y.%-m.%-d'`\"/" observer_ward/Cargo.toml
sed -i -e "s/\"observer_ward version\"/\"observer_ward v`date +'%-Y.%-m.%-d'`\"/" observer_ward/src/cli.rs
- name: Cache Choco
if: matrix.os == 'windows-latest'
uses: actions/cache@v4
with:
path: ${{ github.workspace }}\choco-cache
key: ${{ runner.os }}-temp-cache
- name: Install packages (Windows)
if: matrix.os == 'windows-latest'
shell: bash
run: |
choco config set cacheLocation "${{ github.workspace }}\choco-cache"
choco install llvm openssl
export CARGO_PKG_VERSION=`date +'%-Y.%-m.%-d'`
sed -i -e "s/^version = .*/version = \"`date +'%-Y.%-m.%-d'`\"/" observer_ward/Cargo.toml
sed -i -e "s/\"observer_ward version\"/\"observer_ward v`date +'%-Y.%-m.%-d'`\"/" observer_ward/src/cli.rs
echo "CARGO_PKG_VERSION=`date +'%Y.%m.%d'`" >>$GITHUB_ENV
echo "OPENSSL_DIR=C:\Program Files\OpenSSL-Win64" >>$GITHUB_ENV
echo "RUSTFLAGS=-C target-feature=+crt-static" >>$GITHUB_ENV
- name: Install packages (Macos)
if: matrix.os == 'macos-latest'
run: |
sed -i -e "s/^version = .*/version = \"`date +'%-Y.%-m.%-d'`\"/" observer_ward/Cargo.toml
sed -i -e "s/\"observer_ward version\"/\"observer_ward v`date +'%-Y.%-m.%-d'`\"/" observer_ward/src/cli.rs
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.rust }}
profile: minimal
override: true
target: ${{ matrix.target }}
- name: Install Cargo deb (Ubuntu)
if: matrix.os == 'ubuntu-latest'
run: |
cargo install cargo-deb
- name: Build release binary
run: cargo build --target ${{ matrix.target }} --verbose --release
- name: Build archive
shell: bash
run: |
if [ "${{ matrix.os }}" = "windows-latest" ]; then
bin_file="target/${{ matrix.target }}/release/${{ env.BIN_NAME }}.exe"
echo "BIN_FILE=$bin_file" >> $GITHUB_ENV
else
bin_file="target/${{ matrix.target }}/release/${{ env.BIN_NAME }}"
echo "BIN_FILE=$bin_file" >> $GITHUB_ENV
fi
- name: Install Cargo deb (Ubuntu)
if: matrix.os == 'ubuntu-latest'
run: |
cargo deb --target ${{ matrix.target }} --output target/${{ matrix.target }}/debian/observer-ward${{ matrix.target }}.deb
- name: Upload deb to release
if: matrix.os == 'ubuntu-latest'
uses: svenstaro/upload-release-action@v1-release
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: target/${{ matrix.target }}/debian/observer-ward${{ matrix.target }}.deb
asset_name: ${{ matrix.file }}
tag: defaultv4
overwrite: true
- name: Upload binary to release
uses: svenstaro/upload-release-action@v1-release
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: ${{ env.BIN_FILE }}
asset_name: ${{ matrix.file }}
tag: defaultv4
overwrite: true