We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 170ed50 + 4721071 commit cfd792cCopy full SHA for cfd792c
1 file changed
.github/workflows/stable-build-matrix.yml
@@ -0,0 +1,30 @@
1
+name: Stable Build Matrix
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - stable
7
+ pull_request:
8
9
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