Skip to content

Commit 6a214dd

Browse files
committed
Try getting smoke tests to work for linux
1 parent 833fd27 commit 6a214dd

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

.github/workflows/release-wheels.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,10 @@ jobs:
146146
mv hgraph hgraph_src
147147
trap 'mv hgraph_src hgraph' EXIT
148148
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
149153
for pyver in ${HGRAPH_SMOKE_PYTHONS}; do
150154
uv venv --clear ".venv-test-${pyver}" --python "${pyver}"
151155
uv pip install --python ".venv-test-${pyver}/bin/python" --upgrade pip

0 commit comments

Comments
 (0)