migrate to new build machines #10
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: MacOS make 13 | |
on: | |
push: | |
branches: [ master, development ] | |
jobs: | |
build: | |
runs-on: macos-13 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Fetch git tags | |
run: git fetch --unshallow --tags | |
- name: Install submodules | |
run: git submodule update --init --recursive | |
- name: Install dependencies | |
run: brew install pkgconfig glibmm jack liblo libsndfile gtkmm3 eigen boost gsl fftw libsamplerate cpprestsdk nlohmann-json openssl coreutils libsoundio xerces-c jpeg libmatio libltc | |
- name: make | |
run: make lib libtest && make | |
- name: packaging | |
run: make packaging | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: ovbox-macOS-13 | |
path: packaging/Darwin/*.tgz |