feat(ci): fix workflow, broken macOS builds
Some checks failed
Build Zenyx ⚡ / 🧪 Run Cargo Tests (push) Has been cancelled

This commit is contained in:
BitSyndicate 2025-04-22 21:16:39 +02:00
parent 0926881f1f
commit 16b1960a38
Signed by: bitsyndicate
GPG key ID: 443E4198D6BBA6DE

View file

@ -3,162 +3,91 @@ name: Build Zenyx ⚡
on: on:
push: push:
pull_request: pull_request:
types: [opened, synchronize, reopened]
jobs: jobs:
setup:
name: 🔧 Setup Environment
runs-on: ubuntu-latest
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/bin
/tmp/zig
key: cargo-tools-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
cargo-tools-
- name: 🦀 Install Rust toolchain
uses: https://github.com/actions-rs/toolchain@v1
with:
toolchain: stable
components: rust-src
override: true
- name: 📦 Install Zig and cargo-zigbuild
if: steps.cache-tools.outputs.cache-hit != 'true'
run: |
mkdir -p /tmp/zig
cd /tmp/zig
curl -Lo zig-linux-x86_64.tar.xz https://ziglang.org/builds/zig-linux-x86_64-0.15.0-dev.377+f01833e03.tar.xz
tar -Jxf zig-linux-x86_64.tar.xz -C /tmp/zig --strip-components=1
cargo install cargo-zigbuild
cargo-test: cargo-test:
name: 🧪 Run Cargo Tests name: 🧪 Run Cargo Tests
needs: [setup] runs-on: nixos-latest
runs-on: ubuntu-latest
steps: steps:
- 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: 🚀 Setup & Run tests
uses: https://github.com/actions/cache@v4
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: cargo-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
cargo-
- name: 🦀 Install Rust toolchain
if: steps.restore-cargo-cache.outputs.cache-hit != 'true'
uses: https://github.com/actions-rs/toolchain@v1
with:
toolchain: stable
components: rust-src
override: true
- name: 🦀 Install Vulkan tools
run: | run: |
apt update nix-shell --run "
apt install -y vulkan-tools glslc git-lfs fetch
git-lfs pull
cargo test --release --all
- name: 🚀 Run tests "
uses: https://github.com/actions-rs/cargo@v1
with:
command: test
args: --release --all
build: build:
name: 🏗️ Build ${{ matrix.target }} name: 🏗️ Build ${{ matrix.target }}
needs: [setup, cargo-test] needs: [cargo-test]
runs-on: ubuntu-latest runs-on: nixos-latest
strategy: strategy:
fail-fast: false fail-fast: false
matrix: matrix:
target: target:
- x86_64-unknown-linux-gnu - x86_64-unknown-linux-gnu
- x86_64-pc-windows-msvc
- x86_64-apple-darwin
- aarch64-unknown-linux-gnu - aarch64-unknown-linux-gnu
# - x86_64-pc-windows-msvc - aarch64-pc-windows-msvc
- aarch64-apple-darwin
include: include:
- target: x86_64-unknown-linux-gnu - target: x86_64-unknown-linux-gnu
binary_name: zenyx-x86_64-linux binary_name: zenyx-x86_64-linux
ext: "" ext: ""
command: zigbuild
args: --target x86_64-unknown-linux-gnu --release
- target: aarch64-unknown-linux-gnu - target: aarch64-unknown-linux-gnu
binary_name: zenyx-aarch64-linux binary_name: zenyx-aarch64-linux
ext: "" ext: ""
# - target: x86_64-pc-windows-msvc command: zigbuild
# binary_name: zenyx-x86_64-windows-msvc.exe args: --target aarch64-unknown-linux-gnu --release
# ext: ".exe" - target: x86_64-pc-windows-msvc
binary_name: zenyx-x86_64-windows
ext: ".exe"
command: xwin build
args: --target x86_64-pc-windows-msvc --release
- target: aarch64-pc-windows-msvc
binary_name: zenyx-aarch64-windows
ext: ".exe"
command: xwin build
args: --target aarch64-pc-windows-msvc --release
- target: x86_64-apple-darwin
binary_name: zenyx-x86_64-macos
ext: ""
command: zigbuild
args: --target x86_64-apple-darwin --release
- target: aarch64-apple-darwin
binary_name: zenyx-aarch64-macos
ext: ""
command: zigbuild
args: --target aarch64-apple-darwin --release
steps: steps:
- name: 📥 Checkout source - name: 📥 Checkout source
uses: https://github.com/actions/checkout@v4 uses: https://github.com/actions/checkout@v4
- name: 🗄️ Restore tool cache - name: 🚀 Install Target & Build release binary
uses: https://github.com/actions/cache@v4
with:
path: |
~/.cargo/bin
/tmp/zig
key: cargo-tools-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
cargo-tools-
- name: 📍 Add Zig to PATH
run: echo "/tmp/zig" >> $GITHUB_PATH
- name: 🎯 Install Rust target
uses: https://github.com/actions-rs/toolchain@v1
with:
toolchain: stable
target: ${{ matrix.target }}
override: true
- name: 🗄️ Restore Cargo cache
uses: https://github.com/actions/cache@v4
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: cargo-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
cargo-
- name: 🦀 Install Vulkan tools
run: | run: |
apt update nix-shell --run "
apt install -y vulkan-tools glslc git-lfs fetch --all
git-lfs pull
- name: 🚀 Build release binary cargo ${{ matrix.command }} ${{ matrix.args }}
uses: https://github.com/actions-rs/cargo@v1 "
with:
command: zigbuild
args: --target ${{ matrix.target }} --release
- name: 📦 Package artifact - name: 📦 Package artifact
run: | run: |
mkdir -p artifacts mkdir -p artifacts
cp target/${{ matrix.target }}/release/zenyx${{ matrix.ext }} artifacts/${{ matrix.binary_name }} cp target/${{ matrix.target }}/release/zenyx${{ matrix.ext }} artifacts/${{ matrix.binary_name }}${{ matrix.ext }}
ls
du -sh artifacts
ls -lah artifacts
ls -lah target/${{ matrix.target }}/release
- name: ⬆️ Upload artifact - name: ⬆️ Upload artifact
uses: https://code.forgejo.org/forgejo/upload-artifact@v4 uses: https://code.forgejo.org/forgejo/upload-artifact@v4
with: with:
name: ${{ matrix.binary_name }}.zip name: ${{ matrix.binary_name }}${{ matrix.ext }}.zip
path: artifacts path: artifacts/${{ matrix.binary_name }}${{ matrix.ext }}
compression-level: 9
if-no-files-found: error