mirror of
https://github.com/alexkay/spek.git
synced 2025-04-21 19:07:37 +03:00
create workflow for building
This commit is contained in:
parent
5a331f5f92
commit
16e0f4906d
33
.github/workflows/build-macOS.yml
vendored
Normal file
33
.github/workflows/build-macOS.yml
vendored
Normal file
@ -0,0 +1,33 @@
|
||||
name: build on macOS
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ "master" ]
|
||||
pull_request:
|
||||
branches: [ "master" ]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
strategy:
|
||||
matrix:
|
||||
runner: [macos-11, macos-12]
|
||||
runs-on: ${{ matrix.runner }}
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: install dependencies
|
||||
run: brew install automake coreutils ffmpeg wxwidgets
|
||||
- name : symlink wxwin.m4
|
||||
run: (cd /usr/local/share/aclocal && ln -s ../../Cellar/wxwidgets/3.2.1/share/wx/3.2/aclocal/wxwin.m4 .)
|
||||
- name: autogen
|
||||
run: ./autogen.sh
|
||||
- name: configure
|
||||
run: ./configure
|
||||
- name: make
|
||||
run: make
|
||||
- name: make check
|
||||
run: make check
|
||||
- name: make distcheck
|
||||
run: make distcheck
|
||||
- name: bundle
|
||||
run: ./dist/osx/bundle.sh
|
Loading…
x
Reference in New Issue
Block a user