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.
The
update_chroot
callsflatcar_workon
to get a list of workon packages to rebuild on SDK. But not passing--board
flag toflatcar_workon
means using default board (amd64-usr
), so it really gets a list of packages from the board. But the script failed for me during the sdk_container job, because no board was set up that point.So this PR adds back the
--host
flag toflatcar_workon
(which used to be here incros_workon
) and makesupdate_chroot
pass the new flag to the script.Changes tested as a part of sdk-container job for merged-usr changes.
There are also logs for the failing job, search for
amd64-usr has not been setup yet
there.