-
Notifications
You must be signed in to change notification settings - Fork 50
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
Interrupting SDK install step in CI breaks CI #1052
Comments
Another solution would be to make the SDK install atomic by installing to a temp directory first and then |
Great idea @knoellle, would also fix such issues outside the CI |
I tried implementing this approach but it doesn't work since the installation process bakes the installation path into many of the files.
What do you think? |
Is there anything against a |
Sure, that would (probably) fix the CI issues. |
We could also integrate such a feature to the SDK install script by patching poky |
How Aufwand would that be? Patches break more easily when updating versions.
I'm favoring solution 1 implemented in pepsi. |
When a CI step is interruped while it is installing a SDK, it may result in a partial SDK.
This is fixed by deleting the broken SDK and ensuring that the SDK install step runs through successfully.
Maybe we could add a seperate sdk install step in the CI that is not interruptable. Alternatively, we could disable
fail-fast
entirely for the build stepThe text was updated successfully, but these errors were encountered: