Try adding Apple Silicon M1 GitHub Action runner

This commit is contained in:
Brandon Rhodes 2024-02-19 08:32:57 -05:00
parent 30e14f685e
commit 631576fbc2
1 changed files with 18 additions and 0 deletions

View File

@ -4,6 +4,7 @@ on:
push: push:
branches: branches:
- main - main
- try-m1
pull_request: pull_request:
branches: branches:
@ -35,3 +36,20 @@ jobs:
run: make -C GUI/xephem run: make -C GUI/xephem
- name: Test - name: Test
run: make -C tests run: make -C tests
compile-apple-silicon:
runs-on: macos-14
steps:
- uses: actions/checkout@v2
- name: Install OpenMotif
run: brew install openmotif && brew info openmotif
- name: Install OpenSSL
run: brew install openssl && brew info openssl
- name: Install XQuartz
run: brew install xquartz --cask && brew info xquartz
- name: Find XQuartz
run: find / -name Xm.h
- name: Compile
run: make -C GUI/xephem
- name: Test
run: make -C tests