mirror of https://github.com/docker/cli.git
Bump version to 19.03.0-dev
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
parent
00e6843118
commit
7fa9b4babf
|
@ -1,7 +1,6 @@
|
||||||
package check
|
package check
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"os"
|
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
"github.com/docker/cli/e2eengine"
|
"github.com/docker/cli/e2eengine"
|
||||||
|
@ -17,9 +16,12 @@ func TestDockerEngineOnContainerdAltRootConfig(t *testing.T) {
|
||||||
}
|
}
|
||||||
}()
|
}()
|
||||||
|
|
||||||
|
// Use a fixed version to prevent failures when development of the next version starts, and no image is available yet.
|
||||||
|
targetVersion := "18.09.0-dev"
|
||||||
|
|
||||||
t.Log("First engine init")
|
t.Log("First engine init")
|
||||||
// First init
|
// First init
|
||||||
result := icmd.RunCmd(icmd.Command("docker", "engine", "init", "--config-file", "/tmp/etc/docker/daemon.json"),
|
result := icmd.RunCmd(icmd.Command("docker", "engine", "init", "--config-file", "/tmp/etc/docker/daemon.json", "--version", targetVersion),
|
||||||
func(c *icmd.Cmd) {
|
func(c *icmd.Cmd) {
|
||||||
c.Env = append(c.Env, "DOCKER_CLI_EXPERIMENTAL=enabled")
|
c.Env = append(c.Env, "DOCKER_CLI_EXPERIMENTAL=enabled")
|
||||||
})
|
})
|
||||||
|
@ -32,7 +34,6 @@ func TestDockerEngineOnContainerdAltRootConfig(t *testing.T) {
|
||||||
// Make sure update doesn't blow up with alternate config path
|
// Make sure update doesn't blow up with alternate config path
|
||||||
t.Log("perform update")
|
t.Log("perform update")
|
||||||
// Now update and succeed
|
// Now update and succeed
|
||||||
targetVersion := os.Getenv("VERSION")
|
|
||||||
result = icmd.RunCmd(icmd.Command("docker", "engine", "update", "--version", targetVersion))
|
result = icmd.RunCmd(icmd.Command("docker", "engine", "update", "--version", targetVersion))
|
||||||
result.Assert(t, icmd.Expected{
|
result.Assert(t, icmd.Expected{
|
||||||
Out: "Success! The docker engine is now running.",
|
Out: "Success! The docker engine is now running.",
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
package multi
|
package multi
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"os"
|
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
"github.com/docker/cli/e2eengine"
|
"github.com/docker/cli/e2eengine"
|
||||||
|
@ -17,9 +16,12 @@ func TestDockerEngineOnContainerdMultiTest(t *testing.T) {
|
||||||
}
|
}
|
||||||
}()
|
}()
|
||||||
|
|
||||||
|
// Use a fixed version to prevent failures when development of the next version starts, and no image is available yet.
|
||||||
|
targetVersion := "18.09.0-dev"
|
||||||
|
|
||||||
t.Log("Attempt engine init without experimental")
|
t.Log("Attempt engine init without experimental")
|
||||||
// First init
|
// First init
|
||||||
result := icmd.RunCmd(icmd.Command("docker", "engine", "init"),
|
result := icmd.RunCmd(icmd.Command("docker", "engine", "init", "--version", targetVersion),
|
||||||
func(c *icmd.Cmd) {
|
func(c *icmd.Cmd) {
|
||||||
c.Env = append(c.Env, "DOCKER_CLI_EXPERIMENTAL=disabled")
|
c.Env = append(c.Env, "DOCKER_CLI_EXPERIMENTAL=disabled")
|
||||||
})
|
})
|
||||||
|
@ -31,7 +33,7 @@ func TestDockerEngineOnContainerdMultiTest(t *testing.T) {
|
||||||
|
|
||||||
t.Log("First engine init")
|
t.Log("First engine init")
|
||||||
// First init
|
// First init
|
||||||
result = icmd.RunCmd(icmd.Command("docker", "engine", "init"),
|
result = icmd.RunCmd(icmd.Command("docker", "engine", "init", "--version", targetVersion),
|
||||||
func(c *icmd.Cmd) {
|
func(c *icmd.Cmd) {
|
||||||
c.Env = append(c.Env, "DOCKER_CLI_EXPERIMENTAL=enabled")
|
c.Env = append(c.Env, "DOCKER_CLI_EXPERIMENTAL=enabled")
|
||||||
})
|
})
|
||||||
|
@ -64,7 +66,6 @@ func TestDockerEngineOnContainerdMultiTest(t *testing.T) {
|
||||||
|
|
||||||
t.Log("perform update")
|
t.Log("perform update")
|
||||||
// Now update and succeed
|
// Now update and succeed
|
||||||
targetVersion := os.Getenv("VERSION")
|
|
||||||
result = icmd.RunCmd(icmd.Command("docker", "engine", "update", "--version", targetVersion))
|
result = icmd.RunCmd(icmd.Command("docker", "engine", "update", "--version", targetVersion))
|
||||||
result.Assert(t, icmd.Expected{
|
result.Assert(t, icmd.Expected{
|
||||||
Out: "Success! The docker engine is now running.",
|
Out: "Success! The docker engine is now running.",
|
||||||
|
|
Loading…
Reference in New Issue