Giving up for now on universal binaries in CI - the macOS 11 image is taking too long to start up
This commit is contained in:
12
.github/workflows/macos-ios.yml
vendored
12
.github/workflows/macos-ios.yml
vendored
@@ -9,20 +9,14 @@ on:
|
|||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
|
|
||||||
# This did say "macos-latest", but it turns out "latest" is
|
runs-on: macos-latest
|
||||||
# still 10.15 even though 11.0 is out. I know that feeling
|
|
||||||
runs-on: macos-11.0
|
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- name: deps
|
- name: deps
|
||||||
run: brew install libsndfile vamp-plugin-sdk
|
run: brew install libsndfile vamp-plugin-sdk
|
||||||
- name: make macos universal library
|
- name: make macos
|
||||||
run: make -f Makefile.macos-universal clean library
|
run: make -f Makefile.macos clean library program vamp
|
||||||
- name: make macos native binaries
|
|
||||||
# (these depend on things installed from Homebrew, which I think
|
|
||||||
# doesn't install universal anything, so let's just make them native)
|
|
||||||
run: make -f Makefile.macos program vamp
|
|
||||||
- name: make ios
|
- name: make ios
|
||||||
run: make -f Makefile.ios clean all
|
run: make -f Makefile.ios clean all
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user