From 9c509b966c0a2afd7327b5cdfd93983a99f131f8 Mon Sep 17 00:00:00 2001 From: Stefan Csomor Date: Sun, 18 Apr 2021 19:34:22 +0200 Subject: [PATCH] Create MacS-M1-make.yml First Action for M1 Mac --- .github/workflows/MacS-M1-make.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/MacS-M1-make.yml 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