-
Notifications
You must be signed in to change notification settings - Fork 4.7k
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
Updating docker --build-arg test due to docker code change #16212
Updating docker --build-arg test due to docker code change #16212
Conversation
@openshift/devex ptal |
/retest |
test/extended/builds/start.go
Outdated
g.By("starting the build with --build-arg flag") | ||
br, _ := exutil.StartBuildAndWait(oc, "sample-build-docker-args", "--build-arg=bar=foo") | ||
br.AssertFailure() | ||
br.AssertSuccess() | ||
buildLog, err := br.Logs() | ||
o.Expect(err).NotTo(o.HaveOccurred()) | ||
g.By("verifying the build failed due to Docker.") |
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.
s/failed/completed with a warning/
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.
Updated, thanks
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 see the update :)
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.
doh, updated the wrong spot, just a sec
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.
ok, this time i really updated it
/unassign @knobunc |
Docker changed the error for a non-existent --build-arg to a warning and changed the text of the message slightly, breaking one of our tests. Docker change: moby/moby@f150f42 Fixes: #16197
/lgtm |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: bparees, coreydaley The full list of commands accepted by this bot can be found here.
Needs approval from an approver in each of these OWNERS Files:
You can indicate your approval by writing |
/retest |
1 similar comment
/retest |
Automatic merge from submit-queue (batch tested with PRs 16202, 16198, 16212) |
Docker changed the error for a non-existent --build-arg to a warning
and changed the text of the message slightly, breaking one of our tests.
Docker change: moby/moby@f150f42
Fixes: #16197