Skip to content
Draft
Show file tree
Hide file tree
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
19 changes: 11 additions & 8 deletions .github/workflows/cibuildwheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,17 @@ jobs:
fail-fast: false
matrix:
include:
- os: ubuntu-latest
arch: x86_64
- os: ubuntu-latest
arch: i686
- os: macos-latest
arch: auto
- os: macos-latest
arch: arm64
## - os: ubuntu-latest
## arch: x86_64
## - os: ubuntu-latest
## arch: i686
## - os: macos-latest
## arch: auto
## - os: macos-latest
## arch: arm64
- os: windows-latest
arch: AMD64

env:
CIBW_ARCHS: ${{ matrix.arch }}

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ build-backend = "setuptools.build_meta"
# Use --no-third-party to avoid linking in GLPK.
# The resulting binary would not be distributable.
before-all = """
apt-get install --yes wget || yum install -y wget || brew install bash coreutils
apt-get install --yes wget || yum install -y wget || brew install bash coreutils || echo ignored
wget https://raw.githubusercontent.com/coin-or/coinbrew/master/coinbrew
sed -i.bak '/invoke_make/s/install/-j1 install/' coinbrew
chmod +x coinbrew
Expand Down