Skip to content

Commit 8133745

Browse files
committed
feat/ci: native arm64 build
1 parent a8b6920 commit 8133745

1 file changed

Lines changed: 10 additions & 2 deletions

File tree

.github/workflows/orchid.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,15 @@ on:
55

66
jobs:
77
build:
8-
runs-on: ubuntu-latest
8+
strategy:
9+
fail-fast: false
10+
matrix:
11+
include:
12+
- runner: ubuntu-latest
13+
arch: AMD64
14+
- runner: ubuntu-24.04-arm
15+
arch: ARM64
16+
runs-on: ${{ matrix.runner }}
917
container:
1018
image: ghcr.io/vanilla-os/pico:main
1119
volumes:
@@ -27,5 +35,5 @@ jobs:
2735

2836
- uses: actions/upload-artifact@v4
2937
with:
30-
name: VanillaOS 2 Orchid ${{ env.CURRENT_DATE }}
38+
name: VanillaOS 2 Orchid ${{ matrix.arch }} ${{ env.CURRENT_DATE }}
3139
path: builds/

0 commit comments

Comments
 (0)