mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
![Arnaud Porterie (icecrime)](/assets/img/avatar_default.png)
Starting with this commit, integration tests should no longer rely on the docker cli, they should be API tests instead. For the existing tests the scripts will use a frozen version of the docker cli with a DOCKER_API_VERSION frozen to 1.30, which should ensure that the CI remains green at all times. To help contributors develop and test manually with a modified docker cli, this commit also adds a DOCKER_CLI_PATH environment variable to the Makefile. This allows to set the path of a custom cli that will be available inside the development container and used to run the integration tests. Signed-off-by: Arnaud Porterie (icecrime) <arnaud.porterie@docker.com> Signed-off-by: Tibor Vass <tibor@docker.com>
15 lines
582 B
Bash
15 lines
582 B
Bash
#!/bin/sh
|
|
|
|
TOMLV_COMMIT=9baf8a8a9f2ed20a8e54160840c492f937eeaf9a
|
|
|
|
# When updating RUNC_COMMIT, also update runc in vendor.conf accordingly
|
|
RUNC_COMMIT=9c2d8d184e5da67c95d601382adf14862e4f2228
|
|
CONTAINERD_COMMIT=9048e5e50717ea4497b757314bad98ea3763c145
|
|
TINI_COMMIT=949e6facb77383876aeff8a6944dde66b3089574
|
|
LIBNETWORK_COMMIT=7b2b1feb1de4817d522cc372af149ff48d25028e
|
|
VNDR_COMMIT=c56e082291115e369f77601f9c071dd0b87c7120
|
|
BINDATA_COMMIT=a0ff2567cfb70903282db057e799fd826784d41d
|
|
|
|
# CLI
|
|
DOCKERCLI_REPO=https://github.com/docker/cli
|
|
DOCKERCLI_COMMIT=c3648a9c9400d45524cc71b8fca4085b192c626f
|