We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 833fd27 commit 6a214ddCopy full SHA for 6a214dd
1 file changed
.github/workflows/release-wheels.yml
@@ -146,6 +146,10 @@ jobs:
146
mv hgraph hgraph_src
147
trap 'mv hgraph_src hgraph' EXIT
148
for wheel in wheelhouse/*.whl; do
149
+ if [ "${RUNNER_OS}" = "Linux" ] && [[ "${wheel}" == *musllinux* ]]; then
150
+ echo "Skipping musllinux wheel on glibc runner: ${wheel}"
151
+ continue
152
+ fi
153
for pyver in ${HGRAPH_SMOKE_PYTHONS}; do
154
uv venv --clear ".venv-test-${pyver}" --python "${pyver}"
155
uv pip install --python ".venv-test-${pyver}/bin/python" --upgrade pip
0 commit comments