Conversation
msarahan
force-pushed
the
codex/release-build-output-manifests
branch
2 times, most recently
from
August 3, 2026 18:35
3b37e61 to
d95d03f
Compare
This was referenced Aug 3, 2026
msarahan
force-pushed
the
codex/release-build-output-manifests
branch
from
August 4, 2026 14:50
407b824 to
f0cf91b
Compare
msarahan
force-pushed
the
codex/release-build-output-manifests
branch
from
August 4, 2026 15:01
f0cf91b to
cc9a937
Compare
msarahan
marked this pull request as ready for review
August 4, 2026 16:50
msarahan
force-pushed
the
codex/release-build-output-manifests
branch
from
August 5, 2026 18:56
cc9a937 to
8f57ac8
Compare
msarahan
added a commit
to rapidsai/shared-actions
that referenced
this pull request
Aug 6, 2026
# What is this? This is the reusable action that creates manifests for the artifacts produced by our open source builds. This is part of a plan for: * rapidsai/release-scripts#102 * [For scanning purposes, especially of binary artifacts like wheels, we need to know what software was used at build time. It is often not possible to reverse engineer this information with what we have today.](https://gitlab-master.nvidia.com/RAPIDS/nspect-manager/-/merge_requests/5) The implementation here follows our existing dispatch pattern, rather than earlier efforts that basically did the same thing on shared-workflows (rapidsai/shared-workflows#609)
msarahan
force-pushed
the
codex/release-build-output-manifests
branch
2 times, most recently
from
August 6, 2026 22:51
a946d6d to
f19cf9f
Compare
msarahan
force-pushed
the
codex/release-build-output-manifests
branch
2 times, most recently
from
August 7, 2026 18:59
737648d to
b548f50
Compare
msarahan
force-pushed
the
codex/release-build-output-manifests
branch
3 times, most recently
from
August 13, 2026 15:40
046f14c to
57dd7a2
Compare
Co-authored-by: James Lamb <jaylamb20@gmail.com>
msarahan
force-pushed
the
codex/release-build-output-manifests
branch
from
September 22, 2026 16:21
d84bf34 to
86689f7
Compare
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.
Why
RAPIDS currently creates a release by tagging repositories in dependency order and allowing those tags to trigger builds that publish directly to release channels. That makes the tag a prerequisite for producing the artifacts, forces downstream repositories to wait for upstream publication and CDN synchronization, and prevents us from validating the complete final-version artifact set before making it public.
The proposed release platform reverses that relationship: build the complete release candidate first, verify the exact bytes as a set, and only then promote those approved bytes and tag their source commits. For that to work, the shared build workflows need a release-candidate mode that:
This PR supplies that integration for the standard Conda, wheel, and custom build workflows. It consumes the release catalog action developed in
rapidsai/shared-actions#136. As a result, all of our projects that use standard conda and wheel workflows will be automatically enrolled and enabled for participation in the new release platform without any additional per-repo modification.What changes
This adds a new build type,
release-candidate, to the existing choices: [branch, nightly, pull-request]. Therelease-candidatebuild type selects the behaviors associated with the new release platform:See the
shared-actionsrelease catalog documentation for the companion layout, schemas, package parsing rules, evidence semantics, and S3 layout.Tracks
rapidsai/build-infra#381.