mirror of https://github.com/XEphem/XEphem.git
Try adding Apple Silicon M1 GitHub Action runner
This commit is contained in:
parent
30e14f685e
commit
631576fbc2
|
|
@ -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
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue