-
Notifications
You must be signed in to change notification settings - Fork 20
Improve LAVA job titles #181
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Improve LAVA job titles #181
Conversation
The job template sets DEVICE_TYPE=qcs6490-rb3gen2-vision-kit and this is the only CDT / DT we generate flash assets for at the moment. Signed-off-by: Loïc Minier <[email protected]>
Makes jobs slightly nicer in the GitHub view. Also avoid long pipeline with multiple sed calls and use plain jq instead. Signed-off-by: Loïc Minier <[email protected]>
Sort variable names. Signed-off-by: Loïc Minier <[email protected]>
BUILD_FILE_NAME is used in other templates to construct the download URL, but isn't used in meta-qcom or qcom-deb-images at the moment. Keep it present for future use, but align the list of variables being sed-ed in the templates in both workflows. Signed-off-by: Loïc Minier <[email protected]>
More consistent with other scripts. Signed-off-by: Loïc Minier <[email protected]>
Drop the device_type as it's already discoverable in the LAVA metadata. Also rename boot test to smoke tests as this matches the kind of tests we're pulling from test-definitions. Signed-off-by: Loïc Minier <[email protected]>
Test jobs for commit 18102c3 |
| BUILD_FILE_NAME="unused" | ||
| sed \ | ||
| -e "s|{{BUILD_DOWNLOAD_URL}}|${BUILD_DOWNLOAD_URL}|g" \ | ||
| -e "s|{{BUILD_FILE_NAME}}|${BUILD_FILE_NAME}|g" \ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't think this is required. The whole section will be replaced with a templating tool.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This variable isn't used, but I'm trying to keep the same set in both workflows
(Of course I'm super happy to drop all of this once we have a LAVA templating system in place!)
This is a small series of refactoring tweaks; the main goal is to improve the GH and LAVA job titles and tidy things up along the way