feat: add nightly snapshot releases to GHA pipeline#28575
Draft
dalelane wants to merge 1 commit into
Draft
Conversation
Adding two jobs to the nightly GHA workflow that matches the cron_snapshot_deploment_binary and cron_snapshot_deployment_maven jobs that are in tools/azure-pipelines/build-nightly-dist.yml Both of these are using JDK 11 as the minimum supported version described in build-apache-repo.yml I am not sure how the Python wheels are included in the binary release make_python_release() in create_binary_release.sh does look for wheel files. And there is a comment saying that these are moved manually, but I can't see how/where this is done. I suspect a step is needed in snapshot_binary to download the Python wheels, (and that it should come after and/or be dependent on the outcome of the build_python_wheels job). I didn't add that because I can't see an equivalent in build-apache-repo.yaml, and I've been using that as a reference. cron_python_wheels is run in parallel in the AZP pipeline, but I couldn't find somewhere that the output is copied into the binary job's workspace. Signed-off-by: Dale Lane <dale.lane@uk.ibm.com>
Collaborator
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adding two jobs to the nightly GHA workflow that matches the cron_snapshot_deploment_binary and cron_snapshot_deployment_maven jobs that are in tools/azure-pipelines/build-nightly-dist.yml
Both of these are using JDK 11 as the minimum supported version described in build-apache-repo.yml
I am not sure how the Python wheels are included in the binary release
make_python_release() in create_binary_release.sh does look for wheel files. And there is a comment saying that these are moved manually, but I can't see how/where this is done.
I suspect a step is needed in snapshot_binary to download the Python wheels, (and that it should come after and/or be dependent on the outcome of the build_python_wheels job). I didn't add that because I can't see an equivalent in build-apache-repo.yaml, and I've been using that as a reference. cron_python_wheels is run in parallel in the AZP pipeline, but I couldn't find somewhere that the output is copied into the binary job's workspace.