diff --git a/.github/workflows/MacS-M1-make.yml b/.github/workflows/MacS-M1-make.yml new file mode 100644 index 0000000000..96c3d225f5 --- /dev/null +++ b/.github/workflows/MacS-M1-make.yml @@ -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