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
3 changes: 3 additions & 0 deletions build-support/download-release-artifacts.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,9 @@
data = json.loads(response.read().decode("utf-8"))
for artifact in data['artifacts']:
name = artifact['name']
# Skip debug artifact
if name.endswith("-Debug"):
continue
url = artifact['archive_download_url']

print('Downloading %s from %s' % (name, url))
Expand Down
6 changes: 6 additions & 0 deletions build-support/stage-release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,12 @@ cd $PULSAR_CPP_PATH
build-support/generate-source-archive.sh $DEST_PATH
build-support/download-release-artifacts.py $WORKFLOW_ID $DEST_PATH

pushd "$DEST_PATH"
tar cvzf x64-windows-static.tar.gz x64-windows-static
tar cvzf x86-windows-static.tar.gz x86-windows-static
rm -r x64-windows-static x86-windows-static
popd

# Sign all files
cd $DEST_PATH
find . -type f | xargs $PULSAR_CPP_PATH/build-support/sign-files.sh