Create MacS-M1-make.yml

First Action for M1 Mac
This commit is contained in:
Stefan Csomor 2021-04-18 19:34:22 +02:00 committed by GitHub
parent 15b0648041
commit 9c509b966c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

25
.github/workflows/MacS-M1-make.yml vendored Normal file
View 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