wxWidgets/.github/workflows/MacS-M1-make.yml

26 lines
543 B
YAML
Raw Normal View History

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
2021-04-18 13:40:02 -04:00
- name: make install and minimal sample
run: make install; make -C samples/minimal -f makefile.unx clean; make -C samples/minimal -f makefile.unx