CI: Consolidate Kuiper artifact deployment into unified GitHub action#3337
Merged
liviutomoiaga merged 3 commits intoMay 29, 2026
Merged
Conversation
7d6dd45 to
aa5283e
Compare
gastmaier
reviewed
May 25, 2026
| deploy_kuiper_binaries: | ||
| needs: [assert_build] | ||
| if: > | ||
| ( |
Collaborator
There was a problem hiding this comment.
this is if looks overly cautious, you can just check the org name analogdevicesinc and the branch check is duplicated. the workflow is already on push or pull request.
beyond that it looks good
aa5283e to
355eb66
Compare
gastmaier
reviewed
May 26, 2026
Comment on lines
+261
to
+262
| if: > | ||
| github.repository_owner == 'analogdevicesinc' |
Collaborator
There was a problem hiding this comment.
Suggested change
| if: > | |
| github.repository_owner == 'analogdevicesinc' | |
| if: ${{ github.event.pull_request.head.repo.full_name == github.repository || github.event_name == 'push' }} |
355eb66 to
9f45231
Compare
gastmaier
approved these changes
May 27, 2026
Collaborator
gastmaier
left a comment
There was a problem hiding this comment.
Reduce permission, removed pull request gate, removed whitespace, runs-on casing
Comment on lines
+12
to
+14
| - 'main' | ||
| - 'next_stable' | ||
| - 'xlnx/release/*' |
Collaborator
There was a problem hiding this comment.
Pull requests we can consider intentional, so they don't need gating.
9f45231 to
29d613c
Compare
Use deploy-kuiper-artifacts.yml shared action to deploy to sdg-linux cloudsmith (S3). Reduce contents write permission to read, and trigger Jenkins Test Harness. Signed-off-by: Liviu Tomoiaga <Liviu.Tomoiaga@analog.com>
29d613c to
86565d8
Compare
08222fb to
93be2df
Compare
93be2df to
86565d8
Compare
The logic has been moved to GitHub Actions, with source files in the 'ci' branch. Only the *exceptions files will be kept for now. Signed-off-by: Jorge Marques <jorge.marques@analog.com>
gastmaier
reviewed
May 27, 2026
| adi_nios2_defconfig-* | ||
| dtb-* | ||
|
|
||
| trigger_harness_job: |
Collaborator
There was a problem hiding this comment.
Future work: Move to acting on webhook event (through webhook action)
Collaborator
|
LGTM? |
Add exclude-artifacts input to deploy-kuiper-artifacts workflow. Artifacts matching exclude patterns are skipped before downloading. Signed-off-by: Liviu Tomoiaga <Liviu.Tomoiaga@analog.com>
bia1708
approved these changes
May 29, 2026
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.
PR Description
Consolidate the separate Kuiper and RPI artifact deployment workflows
into a single unified workflow, reducing duplication and simplifying
maintenance. This implementation should replace azure-pipelines.yml
and azure-pipelines-rpi.yml from main branch.
Implementation details are lister here
Test E2E flow -> https://github.com/analogdevicesinc/linux/actions/runs/26039779010
PR Type
PR Checklist