-
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
integ-cli: use httpserver container for fakeGIT #11278
Conversation
@ahmetalpbalkan What's with windows build? Why |
@LK4D4 it happens when |
This change enables `fakeGIT()` to use the new `fakeStorage` server which is automatically starting a container on the remote test daemon machine using the git repo directory (when requested). Fixes the following tests: - `TestBuildApiLowerDockerfile` - `TestBuildApiBuildGitWithF` - `TestBuildApiDoubleDockerfile` (skipped on windows: NTFS case-insensitive) - `TestBuildFromGIT` (still needs local server) Signed-off-by: Ahmet Alp Balkan <ahmetalpbalkan@gmail.com>
ping @icecrime @tiborvass @duglin |
LGTM |
still see
https://jenkins.dockerproject.com/job/Windows-PRs/120/console |
@jfrazelle aware. I cannot repro locally 😞 |
ya im trying hehe |
probably because * is intepreted weirdly by sh maybe @tianon has ideas |
i figured it out, effing sh version |
|
integ-cli: use httpserver container for fakeGIT
Wow how did that happen @jfrazelle |
i blame clippy On Wed, Mar 11, 2015 at 6:41 PM, Ahmet Alp Balkan notifications@github.com
|
This change enables
fakeGIT()
to use the newfakeStorage()
server (#10893)which is automatically starting a container on the remote test daemon machine
using the git repo directory.
Fixes the following tests:
TestBuildApiLowerDockerfile
TestBuildApiBuildGitWithF
TestBuildApiDoubleDockerfile
(skipped on windows: NTFS case-insensitive)TestBuildWithGIT
(requires local http server)These tests are currently failing because we're starting the fakeGIT server on
the same host with the CLI; not the test daemon.
Signed-off-by: Ahmet Alp Balkan ahmetalpbalkan@gmail.com