Some checks failed
Build Release Binaries / build-amd64 (push) Has been cancelled
Forgejo doesn't support @actions/artifact v4. Package the tarball and print sizes instead. Binaries can be grabbed from the runner workspace or deployed directly. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
53 lines
1.4 KiB
YAML
53 lines
1.4 KiB
YAML
name: Build Release Binaries
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
- 'feat/*'
|
|
tags:
|
|
- 'v*'
|
|
workflow_dispatch:
|
|
|
|
env:
|
|
CARGO_TERM_COLOR: always
|
|
|
|
jobs:
|
|
build-amd64:
|
|
runs-on: ubuntu-latest
|
|
container:
|
|
image: catthehacker/ubuntu:act-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Init submodules
|
|
run: |
|
|
git config --global url."https://git.manko.yoga/".insteadOf "ssh://git@git.manko.yoga:222/"
|
|
git submodule update --init --recursive
|
|
|
|
- name: Install Rust + dependencies
|
|
run: |
|
|
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
|
|
source "$HOME/.cargo/env"
|
|
apt-get update && apt-get install -y cmake pkg-config libasound2-dev ninja-build
|
|
rustc --version
|
|
|
|
- name: Build relay + tools
|
|
run: |
|
|
source "$HOME/.cargo/env"
|
|
cargo build --release --bin wzp-relay --bin wzp-client --bin wzp-bench --bin wzp-web
|
|
|
|
- name: Run tests
|
|
run: |
|
|
source "$HOME/.cargo/env"
|
|
cargo test --workspace --lib
|
|
|
|
- name: Package + upload
|
|
run: |
|
|
mkdir -p dist
|
|
tar czf dist/wzp-linux-amd64.tar.gz \
|
|
-C target/release wzp-relay wzp-client wzp-web wzp-bench
|
|
echo "Build artifacts:"
|
|
ls -lh dist/
|
|
ls -lh target/release/wzp-relay target/release/wzp-client
|