-
Notifications
You must be signed in to change notification settings - Fork 13
fix tag used for hourly CI runs #954
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
Conversation
Images are ready for the commit at 0e491b1. To use the images, use the tag |
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 if this works for you but I think the change alters the meaning of CIRCLE_TAG which might cause confusion. It will now always be set. In the Circle CI world this was used only with CI that was triggered by the addition of a tag. Which was releases, rcs, nightlies.
That's what I was thinking, but I noticed that |
I think with stackrox/stackrox using --contains works ok because there is no automation that runs on a cron against the main branch. |
@gavin-stackrox I updated it to set a new |
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.
Makes sense to me.
@RTann: The following tests failed, say
Full PR test history. Your PR dashboard. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. I understand the commands that are listed here. |
I noticed "hourly" CI runs are pushing images with the nightly tag. I think this is because we set
CIRCLE_TAG
togit tag --sort=creatordate --contains | tail -1
. I think if there have not been any merges to themaster
branch since the nightly ran, then this will return a nightly tag. For example, running this on themaster
branch right now gave me2.26-nightly-20220930
.This PR removes
CIRCLE_JOB
andCIRCLE_TAG
and replacesCIRCLE_TAG
withNIGHTLY_TAG