Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions .github/workflows/stable-build-matrix.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Stable Build Matrix

on:
push:
branches:
- stable
pull_request:
branches:
- stable
workflow_dispatch:

jobs:
build:
name: ${{ matrix.os }} / ${{ matrix.feature }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
feature: [headless, gui]

steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable

- name: Build Arcadia
run: cargo build -p arcadia --no-default-features --features ${{ matrix.feature }}
Loading