wxWidgets/.github/workflows/MacS-M1-make.yml
Stefan Csomor cb8d7c533f
Update MacS-M1-make.yml
try simple steps
2021-04-18 21:14:19 +02:00

40 lines
850 B
YAML

name: Mac make CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build-and-test:
defaults:
run:
shell: /usr/bin/arch -arch ${{ matrix.arch }} /bin/bash -l {0}
runs-on: self-hosted
env:
DEVELOPER_DIR: /Applications/Xcode.app/Contents/Developer
NSUnbufferedIO: YES
strategy:
fail-fast: false
matrix:
arch: [arm64e, x86_64]
steps:
- uses: actions/checkout@v2
with:
submodules: recursive
- name: configure
run: mkdir -p $PWD/localbin_${{ matrix.arch }}; ./configure --prefix=$PWD/localbin_${{ matrix.arch }}
- name: make
run: make -j4
- name: make install
run: make install
- name: make tests
run: make -j4 -C tests
- name: run tests
run: pushd tests;./test;popd