-
Notifications
You must be signed in to change notification settings - Fork 55
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
Jenkinsfile.kola.gcp: drop --gce-image #240
Conversation
Upgrade tests use the image of the previous release, not the candidate release we're testing itself. The `--find-parent-image` switch will automatically find the starting image to use. Closes: coreos/fedora-coreos-tracker#487
Requires: coreos/coreos-assembler#1468 |
hmm. Note here that the line we are removing is:
which encodes the project the image belongs to as well. I think we need to hold this, let me revive coreos/coreos-assembler#1335 so we can get project into the meta.json and then update coreos/coreos-assembler#1468 to also consider project. Do you agree? |
Ahh right, the image is not useful without a project. Sure yup, let's do coreos/coreos-assembler#1335. (I guess short-term we could also just hardcode the project name in kola, though coreos/coreos-assembler#1335 looks pretty straightforward.) |
ok coreos/coreos-assembler#1335 merged and coreos/coreos-assembler#1468 is approved. just wondering.. do we need to or should we drop |
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.
LGTM
as part of this do you want to enable the GCP test in the pipeline too? |
nvm - let's do it in #241 |
Awesome, thanks for testing! Let's merge once the latter one is in.
The other |
I'm just wondering why kola can find that information (the image/image project) itself since we are passing it the |
I'm guessing you mean "aren't", right?
|
Let me start over.. Why can't we remove
|
Because right now |
👍 - thanks. that explains it |
Upgrade tests use the image of the previous release, not the candidate
release we're testing itself. The
--find-parent-image
switch willautomatically find the starting image to use.
Closes: coreos/fedora-coreos-tracker#487