-
Notifications
You must be signed in to change notification settings - Fork 18.6k
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
Change emptyfs path in integration-cli tests #10716
Conversation
I ran your PR here https://jenkins.dockerproject.com/job/Windows-PRs/1/console |
oh sorry thats my bad hangon |
LGTM |
@jfrazelle ok I can perfectly see somebody has broken the windows build again recently. :) 👍 okayface |
LGTM ❤️ |
The part this is changing/fixing worked fine in Jenkins! 👍 |
@@ -5,7 +5,8 @@ if ! docker inspect emptyfs &> /dev/null; then | |||
# let's build a "docker save" tarball for "emptyfs" | |||
# see https://github.com/docker/docker/pull/5262 | |||
# and also https://github.com/docker/docker/issues/4242 | |||
dir="$(mktemp -d)" | |||
dir="$DIST/emptyfs" |
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.
Oh man, I just realized this should be DEST
, not DIST
.
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.
In other words, we just created /emptyfs
on the Windows Jenkins box. 👼
LGTM |
op nice find |
This fixes the build break in Jenkins Windows CI tests and fixes TestInspectImage for Windows CLI. Signed-off-by: Ahmet Alp Balkan <ahmetalpbalkan@gmail.com>
LGTM |
LGTM after "janky" passes |
💚 |
Change emptyfs path in integration-cli tests
This fixes the build break in Jenkins Windows CI tests and
fixes TestInspectImage for Windows CLI.
Since
mktemp -d
doesn't come with MSYSGIT, this was breakingthe Jenkins build for a while now.
Signed-off-by: Ahmet Alp Balkan ahmetalpbalkan@gmail.com
Label:
#windows
cc: @tianon @jfrazelle @unclejack @tiborvass @sachin-jayant-joshi