ci: Run Yocto LAVA tests for both image configs - #256
Merged
Salendarsingh Gaud (sgaud-quic) merged 1 commit intoJul 28, 2026
Conversation
Add image_type plumbing so LAVA job rendering can select the multimedia or proprietary qcomflash artifact and use the matching config1/config2 playlist. Run both image types for pre-merge and post-merge Yocto tests, and include the image type in job names and test artifacts to avoid result collisions. Signed-off-by: Salendarsingh Gaud <sgaud@qti.qualcomm.com>
| run: | | ||
| set -e | ||
| MACHINE="${{ matrix.rootfs_matrix.machine }}" | ||
| IMAGE_TYPE="${{ inputs.image_type }}" |
| ' | ||
| echo -e "$SUMMARY" >> $GITHUB_STEP_SUMMARY | ||
| JOB_INFO="- [Job $job_id on ${{ matrix.rootfs_matrix.machine }}]($job_url)" | ||
| JOB_INFO="- [${{ inputs.image_type }} Job $job_id on ${{ matrix.rootfs_matrix.machine }}]($job_url)" |
Comment on lines
+95
to
+112
| test: | ||
| needs: [init-status, loading, build_yocto] | ||
| strategy: | ||
| fail-fast: false | ||
| matrix: | ||
| image_type: [multimedia, proprietary] | ||
| uses: qualcomm-linux/kernel-config/.github/workflows/test.yml@main | ||
| secrets: inherit | ||
| with: | ||
| docker_image: ${{ vars.TECH_TEAM_NAMESPACE }}/kmake-image:${{ vars.KMAKE_IMAGE_VERSION }} | ||
| rootfs_matrix: ${{ needs.loading.outputs.rootfs_matrix }} | ||
| kernel_version: ${{ needs.build_yocto.outputs.kernel_version }} | ||
| commit_SHA: ${{ inputs.sha }} | ||
| branch: ${{ inputs.ref }} | ||
| pr_number: ${{ inputs.pr }} | ||
| flash_type: "qdl" | ||
| build_type: "yocto" | ||
| image_type: ${{ matrix.image_type }} |
| fail-fast: false | ||
| matrix: | ||
| image_type: [multimedia, proprietary] | ||
| uses: qualcomm-linux/kernel-config/.github/workflows/test.yml@main |
Salendarsingh Gaud (sgaud-quic)
merged commit Jul 28, 2026
8324be9
into
qualcomm-linux:main
1 of 3 checks passed
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.
Add image_type plumbing so LAVA job rendering can select the multimedia or proprietary qcomflash artifact and use the matching config1/config2 playlist.
Run both image types for pre-merge and post-merge Yocto tests, and include the image type in job names and test artifacts to avoid result collisions.