Update MacS-M1-make.yml

add parallel build, try running tests, skip install
This commit is contained in:
Stefan Csomor
2021-04-18 19:56:17 +02:00
committed by GitHub
parent 2e4cf11d15
commit 866254dda0

View File

@@ -18,8 +18,10 @@ jobs:
- name: configure
run: arch -arm64 ./configure
- name: make
run: arch -arm64 make
run: arch -arm64 make -j4
- name: make tests
run: arch -arm64 make -C tests
- name: make install and minimal sample
run: make install; make -C samples/minimal -f makefile.unx clean; make -C samples/minimal -f makefile.unx
- name: run tests
run: pushd tests;arch -arm64 ./test;popd
- name: make minimal sample
run: arch -arm64 make -C samples/minimal -f makefile.unx clean;arch -arm64 make -C samples/minimal -f makefile.unx