Skip to content

Commit

Permalink
.github/workflows/dist.yml: Also build wheels for sagemath-bliss etc.
Browse files Browse the repository at this point in the history
  • Loading branch information
mkoeppe committed Oct 23, 2023
1 parent b3725e3 commit 4dc9918
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/dist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ jobs:
# SPKGs to install as system packages
SPKGS: _bootstrap _prereq
# Non-Python packages to install as spkgs
TARGETS_PRE: gmpy2-build-deps
TARGETS_PRE: gmpy2-build-deps bliss coxeter3 mcqd meataxe sirocco tdlib
# Disable building PyPy wheels on all platforms
# Disable musllinux until #33083 provides alpine package information
CIBW_SKIP: "pp* *-musllinux*"
Expand Down Expand Up @@ -154,7 +154,7 @@ jobs:
export PATH=build/bin:$PATH
export CIBW_BEFORE_ALL="( $(sage-print-system-package-command debian --yes --no-install-recommends install $(sage-get-system-packages debian $SPKGS)) || $(sage-print-system-package-command fedora --yes --no-install-recommends install $(sage-get-system-packages fedora $SPKGS | sed s/pkg-config/pkgconfig/)) || ( $(sage-print-system-package-command homebrew --yes --no-install-recommends install $(sage-get-system-packages homebrew $SPKGS)) || echo error ignored) ) && ./bootstrap && ./configure --enable-build-as-root && make -j4 V=0 $TARGETS_PRE"
mkdir -p unpacked
for pkg in sagemath-objects sagemath-categories; do
for pkg in sagemath-objects sagemath-categories sagemath-bliss sagemath-coxeter3 sagemath-mcqd sagemath-meataxe sagemath-sirocco sagemath-tdlib; do
(cd unpacked && tar xfz - ) < dist/$pkg*.tar.gz
pipx run cibuildwheel==2.16.2 unpacked/$pkg*
done
Expand Down

0 comments on commit 4dc9918

Please sign in to comment.