CI: add aarch64-macos / M1 self-hosted runner
Fixes #7 Signed-off-by: Stephen Gutekanst <stephen@hexops.com>
This commit is contained in:
parent
c57a2374ab
commit
ac3ddc4a5a
1 changed files with 27 additions and 0 deletions
27
.github/workflows/m1_ci.yml
vendored
Normal file
27
.github/workflows/m1_ci.yml
vendored
Normal file
|
|
@ -0,0 +1,27 @@
|
||||||
|
name: CI
|
||||||
|
on:
|
||||||
|
# SECURITY: This must be a push event only, otherwise our M1 mac runner would be compromised by
|
||||||
|
# third-party pull requests which could run arbitrary code. This way, we can restrict it to
|
||||||
|
# collaborators of the repository only.
|
||||||
|
#
|
||||||
|
# Whenever GitHub Actions gets official M1 support, we can use that for PRs and get rid of this
|
||||||
|
# self-hosted runner: https://github.com/actions/virtual-environments/issues/2187
|
||||||
|
- push
|
||||||
|
jobs:
|
||||||
|
aarch64-macos:
|
||||||
|
runs-on: [self-hosted, macOS, ARM64]
|
||||||
|
defaults:
|
||||||
|
run:
|
||||||
|
shell: "/usr/bin/arch -arch arm64e /bin/bash --noprofile --norc -eo pipefail {0}"
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
- name: Setup Zig
|
||||||
|
run: |
|
||||||
|
zig version
|
||||||
|
- name: mach::test
|
||||||
|
run: zig build test
|
||||||
|
env:
|
||||||
|
AGREE: true
|
||||||
|
- name: webgpu::test
|
||||||
|
run: cd webgpu && zig build test
|
||||||
Loading…
Add table
Add a link
Reference in a new issue