Skip to content

Commit

Permalink
Build dependencies on macOS 11 (BloopAI#258)
Browse files Browse the repository at this point in the history
This enables backwards-compatible builds that can run on macOS 11.
  • Loading branch information
calyptobai committed Mar 17, 2023
1 parent 5786d61 commit dd0512b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ jobs:
cross: false

- target: x86_64-darwin
os: macos-latest
os: macos-11
cross: false

- target: aarch64-darwin
os: macos-latest
os: macos-11
cross: true

# Requires python for the build, which in a proper mess
Expand Down Expand Up @@ -75,7 +75,7 @@ jobs:
cp -r $package_path/* ${{ env.PACKAGE_NAME }}_bundle
- name: Copy macOS dynamic dependencies
if: matrix.os == 'macos-latest' && ( matrix.package == 'ctags' )
if: matrix.os == 'macos-11' && ( matrix.package == 'ctags' )
env:
PACKAGE_NAME: ${{ steps.var.outputs.package-name }}
run: |
Expand Down Expand Up @@ -129,11 +129,11 @@ jobs:
cross: false

- target: x86_64-apple-darwin
os: macos-latest
os: macos-11
cross: false

- target: aarch64-apple-darwin
os: macos-latest
os: macos-11
cross: true

runs-on: ${{ matrix.os }}
Expand Down

0 comments on commit dd0512b

Please sign in to comment.