Skip to content
Merged
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
6 changes: 3 additions & 3 deletions .github/workflows/ci-build-release-wheels.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
linux-wheel:
name: Wheel ${{matrix.image.name}} - Py ${{matrix.python.version}} - ${{matrix.cpu.platform}}
runs-on: ubuntu-latest
timeout-minutes: 300
timeout-minutes: 360

strategy:
fail-fast: false
Expand Down Expand Up @@ -95,7 +95,7 @@ jobs:
mac-wheels:
name: Wheel MacOS Universal2 - Py ${{matrix.py.version}}
runs-on: macos-14
timeout-minutes: 300
timeout-minutes: 360

strategy:
fail-fast: false
Expand Down Expand Up @@ -125,7 +125,7 @@ jobs:
runs-on: windows-2022
env:
PULSAR_CPP_DIR: 'C:\\pulsar-cpp'
timeout-minutes: 300
timeout-minutes: 360

strategy:
fail-fast: false
Expand Down
6 changes: 4 additions & 2 deletions build-support/stage-release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,11 @@ mv $TAG.tar.gz pulsar-client-python-$VERSION.tar.gz

# Download the Python wheels
URLS=$(curl -L https://api.github.com/repos/apache/pulsar-client-python/actions/runs/$WORKFLOW_ID/artifacts \
| jq '.artifacts[] .archive_download_url' | sed 's/^"\(.*\)"$/\1/')
| jq -r '.artifacts[]
| select(((.name // "") | contains("dockerbuild")) | not)
| .archive_download_url')
for URL in $URLS; do
curl -O -L $URL -H "Accept: application/vnd.github+json" -H "Authorization: Bearer $GITHUB_TOKEN"
curl -O -L "$URL" -H "Accept: application/vnd.github+json" -H "Authorization: Bearer $GITHUB_TOKEN"
unzip -q zip
rm -f zip
done
Expand Down
Loading