Compare commits
3 commits
cb91bde7f8
...
971aad5414
Author | SHA1 | Date | |
---|---|---|---|
971aad5414 | |||
6815a113cc | |||
630d13ebb2 |
1 changed files with 77 additions and 64 deletions
|
@ -1,75 +1,88 @@
|
||||||
name: Build Zenyx ⚡
|
name: Build Zenyx ⚡
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
pull_request:
|
pull_request:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
setup:
|
||||||
name: Build ${{ matrix.target }}
|
name: 🔧 Setup Environment
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
container: ${{ matrix.container }}
|
outputs:
|
||||||
|
cache-hit: ${{ steps.cache-tools.outputs.cache-hit }}
|
||||||
|
steps:
|
||||||
|
- name: 📥 Checkout source
|
||||||
|
uses: https://github.com/actions/checkout@v4
|
||||||
|
|
||||||
|
- name: 🗄️ Cache tools
|
||||||
|
uses: https://github.com/actions/cache@v4
|
||||||
|
id: cache-tools
|
||||||
|
with:
|
||||||
|
path: |
|
||||||
|
~/.cargo/registry
|
||||||
|
~/.cargo/git
|
||||||
|
target
|
||||||
|
key: tools-v1-${{ hashFiles('**/Cargo.lock') }}
|
||||||
|
|
||||||
|
- name: 🦀 Install Rust toolchain
|
||||||
|
uses: https://github.com/actions-rs/toolchain@v1
|
||||||
|
with:
|
||||||
|
toolchain: stable
|
||||||
|
components: rust-src
|
||||||
|
override: true
|
||||||
|
|
||||||
|
build:
|
||||||
|
name: 🏗️ Build ${{ matrix.target }}
|
||||||
|
needs: setup
|
||||||
|
runs-on: ubuntu-latest
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
include:
|
include:
|
||||||
- target: x86_64-unknown-linux-gnu
|
- target: x86_64-unknown-linux-gnu
|
||||||
container: messense/cargo-zigbuild:latest
|
image: messense/cargo-zigbuild:latest
|
||||||
binary_name: zenyx-x86_64-linux
|
binary_name: zenyx-x86_64-linux
|
||||||
ext: ""
|
ext: ""
|
||||||
|
|
||||||
- target: aarch64-unknown-linux-gnu
|
- target: aarch64-unknown-linux-gnu
|
||||||
container: messense/cargo-zigbuild:latest
|
image: messense/cargo-zigbuild:latest
|
||||||
binary_name: zenyx-aarch64-linux
|
binary_name: zenyx-aarch64-linux
|
||||||
ext: ""
|
ext: ""
|
||||||
|
|
||||||
- target: universal2-apple-darwin
|
|
||||||
container: messense/cargo-zigbuild:latest
|
|
||||||
binary_name: zenyx-universal-macos
|
|
||||||
ext: ""
|
|
||||||
|
|
||||||
- target: x86_64-pc-windows-msvc
|
- target: x86_64-pc-windows-msvc
|
||||||
container: messense/cargo-xwin:latest
|
image: messense/cargo-xwin:latest
|
||||||
binary_name: zenyx-x86_64-windows-msvc.exe
|
binary_name: zenyx-x86_64-windows-msvc.exe
|
||||||
ext: ".exe"
|
ext: ".exe"
|
||||||
|
|
||||||
|
container: ${{ matrix.image }}
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Ensure nodejs
|
|
||||||
run: |
|
|
||||||
apt-get -y install nodejs
|
|
||||||
- name: 📥 Checkout source
|
- name: 📥 Checkout source
|
||||||
uses: https://github.com/actions/checkout@v4
|
uses: https://github.com/actions/checkout@v4
|
||||||
|
|
||||||
- name: 🧩 Restore Cargo cache
|
- name: 🗄️ Restore Cargo cache
|
||||||
uses: https://github.com/actions/cache@v4
|
uses: https://github.com/actions/cache@v4
|
||||||
with:
|
with:
|
||||||
path: |
|
path: |
|
||||||
/usr/local/cargo/registry
|
/usr/local/cargo/registry
|
||||||
/usr/local/cargo/git
|
/usr/local/cargo/git
|
||||||
target
|
target
|
||||||
key: ${{ runner.os }}-cargo-${{ matrix.target }}-${{ hashFiles('**/Cargo.lock') }}
|
key: cargo-${{ matrix.target }}-${{ hashFiles('**/Cargo.lock') }}
|
||||||
restore-keys: |
|
restore-keys: |
|
||||||
${{ runner.os }}-cargo-${{ matrix.target }}-
|
cargo-${{ matrix.target }}-
|
||||||
|
|
||||||
- name: 🦀 Install macOS targets
|
- name: 🚀 Build release binary
|
||||||
if: matrix.target == 'universal2-apple-darwin'
|
|
||||||
uses: https://github.com/actions-rs/toolchain@v1
|
|
||||||
with:
|
|
||||||
target: x86_64-apple-darwin,aarch64-apple-darwin
|
|
||||||
|
|
||||||
- name: 🚀 Build project
|
|
||||||
run: |
|
|
||||||
cargo zigbuild --target ${{ matrix.target }} --release
|
|
||||||
if: matrix.target != 'x86_64-pc-windows-msvc'
|
|
||||||
|
|
||||||
- name: 🚀 Build Windows project
|
|
||||||
run: |
|
run: |
|
||||||
|
if [[ "${{ matrix.target }}" == *"windows"* ]]; then
|
||||||
cargo xwin build --target ${{ matrix.target }} --release
|
cargo xwin build --target ${{ matrix.target }} --release
|
||||||
if: matrix.target == 'x86_64-pc-windows-msvc'
|
else
|
||||||
|
cargo zigbuild --target ${{ matrix.target }} --release
|
||||||
|
fi
|
||||||
|
|
||||||
- name: 📦 Package artifact
|
- name: 📦 Package artifact
|
||||||
run: mkdir -p artifacts && cp target/${{ matrix.target }}/release/zenyx${{ matrix.ext }} artifacts/${{ matrix.binary_name }}
|
run: |
|
||||||
|
mkdir -p artifacts
|
||||||
|
cp target/${{ matrix.target }}/release/zenyx${{ matrix.ext }} artifacts/${{ matrix.binary_name }}
|
||||||
|
|
||||||
- name: ⬆️ Upload artifact
|
- name: ⬆️ Upload artifact
|
||||||
uses: https://code.forgejo.org/forgejo/upload-artifact@v4
|
uses: https://code.forgejo.org/forgejo/upload-artifact@v4
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue