Skip to content

Commit

Permalink
build: try adding libtool to brew install (it's not default with buil…
Browse files Browse the repository at this point in the history
…d tools in OS14)
  • Loading branch information
lgray authored Jun 25, 2024
1 parent f90dc72 commit 0eee458
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
fail-fast: false
matrix:
python-version: ["3.8", "3.12"]
runs-on: [ubuntu-latest, macos-13]
runs-on: [ubuntu-latest, macos-13, macos-latest]
arch: [auto64]
steps:
- uses: actions/checkout@v4
Expand All @@ -48,7 +48,7 @@ jobs:
- name: Install compiler tools on macOS
if: runner.os == 'macOS'
run: |
brew install make automake swig gmp mpfr boost
brew install make automake swig gmp mpfr boost libtool
export PATH="/usr/local/opt/make/libexec/gnubin:$PATH"
- name: Install extra deps on Linux
Expand All @@ -69,7 +69,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-13]
os: [ubuntu-latest, macos-13, macos-latest]
python: [312]
arch: [auto64]

Expand All @@ -86,7 +86,7 @@ jobs:
- name: Install compiler tools on macOS
if: runner.os == 'macOS'
run: |
brew install make automake swig gmp mpfr boost
brew install make automake swig gmp mpfr boost libtool
export PATH="/usr/local/opt/make/libexec/gnubin:$PATH"
- uses: pypa/[email protected]
Expand Down

0 comments on commit 0eee458

Please sign in to comment.