Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build: try adding libtool to brew install #301

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 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,8 +48,9 @@ jobs:
- name: Install compiler tools on macOS
if: runner.os == 'macOS'
run: |
brew install make automake swig gmp mpfr boost
brew reinstall make automake swig gmp mpfr boost libtool
export PATH="/usr/local/opt/make/libexec/gnubin:$PATH"
eval "$(/opt/homebrew/bin/brew shellenv)"

- name: Install extra deps on Linux
if: runner.os == 'Linux'
Expand All @@ -69,7 +70,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,8 +87,9 @@ jobs:
- name: Install compiler tools on macOS
if: runner.os == 'macOS'
run: |
brew install make automake swig gmp mpfr boost
brew reinstall make automake swig gmp mpfr boost libtool
export PATH="/usr/local/opt/make/libexec/gnubin:$PATH"
eval "$(/opt/homebrew/bin/brew shellenv)"

- uses: pypa/cibuildwheel@v2.17
env:
Expand Down
Loading