Skip to content

Commit d812c61

Browse files
committed
skip builds for musllinux for now - needs separate docker image
1 parent ade8b54 commit d812c61

File tree

2 files changed

+2
-39
lines changed

2 files changed

+2
-39
lines changed

.github/workflows/on-release-main.yml

Lines changed: 1 addition & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,6 @@ jobs:
4343
native-image-job-reports: "true"
4444
cache: "maven"
4545

46-
# - name: Install python dependencies
47-
# run: poetry install --no-interaction
48-
# if: ${{ startsWith(matrix.os, 'macos') || startsWith(matrix.os, 'windows') )}}
49-
5046
- name: Set MACOSX_DEPLOYMENT_TARGET used by cibuildwheel
5147
if: ${{ startsWith(matrix.os, 'macos') }}
5248
run: echo "MACOSX_DEPLOYMENT_TARGET=${{ matrix.os == 'macos-14' && '14.0' || '13.0' }}" >> $GITHUB_ENV
@@ -56,41 +52,7 @@ jobs:
5652
pip install cibuildwheel
5753
cibuildwheel --debug-traceback --output-dir wheelhouse
5854
env:
59-
# CIBW_BEFORE_ALL_LINUX: |
60-
# cd /opt
61-
#
62-
# # Install GraalVM
63-
# export GRAALVM_VERSION=23.0.2
64-
# export ARCH=x86_64 && \
65-
# curl -L -o graalvm.tar.gz https://github.com/graalvm/graalvm-ce-builds/releases/download/jdk-23.0.2/graalvm-community-jdk-23.0.2_linux-x64_bin.tar.gz
66-
# tar -xzf graalvm.tar.gz
67-
# export GRAALVM_HOME=/opt/graalvm-community-openjdk-23.0.2+7.1
68-
# export JAVA_HOME=/opt/graalvm-community-openjdk-23.0.2+7.1
69-
# export PATH=/opt/graalvm-community-openjdk-23.0.2+7.1/bin:$PATH
70-
# echo 'export JAVA_HOME=/opt/graalvm-community-openjdk-23.0.2+7.1' >> ~/.bashrc
71-
# echo 'export GRAALVM_HOME=/opt/graalvm-community-openjdk-23.0.2+7.1' >> ~/.bashrc
72-
# echo 'export PATH=/opt/graalvm-community-openjdk-23.0.2+7.1/bin:$PATH' >> ~/.bashrc
73-
#
74-
# # install Poetry
75-
# curl -sSL https://install.python-poetry.org | python3 -
76-
# export PATH=/root/.local/bin:$PATH
77-
# echo 'export PATH=/root/.local/bin:$PATH' >> ~/.bashrc
78-
#
79-
# # Install Maven
80-
# export MAVEN_VERSION=3.9.9
81-
# curl -L -o apache-maven.tar.gz https://dlcdn.apache.org/maven/maven-3/3.9.9/binaries/apache-maven-3.9.9-bin.tar.gz
82-
# tar -xzf apache-maven.tar.gz
83-
# export MAVEN_HOME=/opt/apache-maven-3.9.9
84-
# export PATH=/opt/apache-maven-3.9.9/bin:$PATH
85-
# echo 'export MAVEN_HOME=/opt/apache-maven-3.9.9' >> ~/.bashrc
86-
# echo 'export PATH=/opt/apache-maven-3.9.9/bin:$PATH' >> ~/.bashrc
87-
#
88-
# native-image --version
89-
# mvn --version
90-
# poetry --version
91-
CIBW_BUILD_VERBOSITY_LINUX: 3
92-
CIBW_DEBUG_TRACEBACK: TRUE
93-
CIBW_DEBUG_KEEP_CONTAINER: TRUE
55+
CIBW_BUILD_VERBOSITY_LINUX: 2
9456

9557
- name: Copy wheels to dist directory
9658
run: |

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ mkdocstrings = {extras = ["python"], version = "^0.27.0"}
4141
[tool.cibuildwheel]
4242
build = "cp311-* cp312-* cp313-*"
4343
manylinux-x86_64-image = "ghcr.io/virtualcell/manylinux_2_28_x86_64:0.0.1"
44+
skip = "musllinux*"
4445

4546
[tool.cibuildwheel.linux]
4647
archs = ["x86_64"]

0 commit comments

Comments
 (0)