Create MacS-M1-make.yml
First Action for M1 Mac
This commit is contained in:
parent
15b0648041
commit
9c509b966c
1 changed files with 25 additions and 0 deletions
25
.github/workflows/MacS-M1-make.yml
vendored
Normal file
25
.github/workflows/MacS-M1-make.yml
vendored
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
name: Mac make CI
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ master ]
|
||||
pull_request:
|
||||
branches: [ master ]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
runs-on: self-hosted
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
with:
|
||||
submodules: recursive
|
||||
- name: configure
|
||||
run: arch -arm64 ./configure
|
||||
- name: make
|
||||
run: arch -arm64 make
|
||||
- name: make tests
|
||||
run: arch -arm64 make -C tests
|
||||
- name: make install
|
||||
run: make install; make -C samples/minimal -f makefile.unx clean; make -C samples/minimal -f makefile.unx
|
||||
Loading…
Add table
Add a link
Reference in a new issue