Skip to content

Commit cfd792c

Browse files
Merge pull request #1 from stack-node/development
workflows
2 parents 170ed50 + 4721071 commit cfd792c

1 file changed

Lines changed: 30 additions & 0 deletions

File tree

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: Stable Build Matrix
2+
3+
on:
4+
push:
5+
branches:
6+
- stable
7+
pull_request:
8+
branches:
9+
- stable
10+
workflow_dispatch:
11+
12+
jobs:
13+
build:
14+
name: ${{ matrix.os }} / ${{ matrix.feature }}
15+
runs-on: ${{ matrix.os }}
16+
strategy:
17+
fail-fast: false
18+
matrix:
19+
os: [ubuntu-latest, windows-latest, macos-latest]
20+
feature: [headless, gui]
21+
22+
steps:
23+
- name: Checkout repository
24+
uses: actions/checkout@v4
25+
26+
- name: Install Rust toolchain
27+
uses: dtolnay/rust-toolchain@stable
28+
29+
- name: Build Arcadia
30+
run: cargo build -p arcadia --no-default-features --features ${{ matrix.feature }}

0 commit comments

Comments
 (0)