From 64f9122741253be0a0deaa1ee521240fb7f7419c Mon Sep 17 00:00:00 2001 From: Chris Cannam Date: Fri, 8 Jan 2021 16:19:16 +0000 Subject: [PATCH] Giving up for now on universal binaries in CI - the macOS 11 image is taking too long to start up --- .github/workflows/macos-ios.yml | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/.github/workflows/macos-ios.yml b/.github/workflows/macos-ios.yml index b3929ce..ff09c11 100644 --- a/.github/workflows/macos-ios.yml +++ b/.github/workflows/macos-ios.yml @@ -9,20 +9,14 @@ on: jobs: build: - # This did say "macos-latest", but it turns out "latest" is - # still 10.15 even though 11.0 is out. I know that feeling - runs-on: macos-11.0 + runs-on: macos-latest steps: - uses: actions/checkout@v2 - name: deps run: brew install libsndfile vamp-plugin-sdk - - name: make macos universal library - run: make -f Makefile.macos-universal clean library - - 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 macos + run: make -f Makefile.macos clean library program vamp - name: make ios run: make -f Makefile.ios clean all