zig-glfw/.github/workflows/m1_ci.yml
Stephen Gutekanst 23f41c6385 CI: M1: build but dont test (for now, transitive dependency issue)
Helps hexops/mach#902

Signed-off-by: Stephen Gutekanst <stephen@hexops.com>
2023-08-08 21:55:56 -07:00

35 lines
1.3 KiB
YAML

name: M1
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:
if: ${{ github.repository == 'hexops/mach-glfw' }}
runs-on: [self-hosted, macOS, ARM64]
defaults:
run:
shell: "/usr/bin/arch -arch arm64e /bin/bash --noprofile --norc -eo pipefail {0}"
steps:
- name: Clean repository submodules
# See https://github.com/actions/checkout/issues/385
run: |
rm -rf $GITHUB_WORKSPACE && mkdir $GITHUB_WORKSPACE
- name: Checkout
uses: actions/checkout@v2
with:
submodules: 'true'
- name: aarch64-macos -> x86_64-macos
run: zig build -Dtarget=x86_64-macos
- name: aarch64-macos -> x86_64-windows
run: zig build -Dtarget=x86_64-windows
- name: aarch64-macos -> x86_64-linux
run: zig build -Dtarget=x86_64-linux
- name: build
run: zig build
# - name: test
# run: zig build test