Skip to content

Commit afe4fc0

Browse files
committed
wip
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
1 parent f32aff4 commit afe4fc0

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

circle.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ jobs:
3737
docker build -f $dockerfile --tag cli-builder:$CIRCLE_BUILD_NUM .
3838
name=cross-$CIRCLE_BUILD_NUM-$CIRCLE_NODE_INDEX
3939
docker run \
40-
-e VERSION=$VERSION \
4140
-e CROSS_GROUP=$CIRCLE_NODE_INDEX \
4241
--name $name cli-builder:$CIRCLE_BUILD_NUM \
4342
make cross

dockerfiles/Dockerfile.dev

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
FROM golang:1.9.2-alpine3.6
33

4-
RUN apk add -U git make bash coreutils ca-certificates openssh
4+
RUN apk add -U git make bash coreutils ca-certificates
55

66
ARG VNDR_SHA=a6e196d8b4b0cbbdc29aebdb20c59ac6926bb384
77
RUN go get -d github.com/LK4D4/vndr && \

e2e/compose-env.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ services:
88
image: 'docker:${TEST_ENGINE_VERSION:-edge-dind}'
99
privileged: true
1010
command: ['--insecure-registry=registry:5000']
11+
depends_on:
12+
- registry
1113

1214
notary-server:
1315
image: 'notary:server-0.4.2'

e2e/stack/remove_test.go

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ package stack
22

33
import (
44
"fmt"
5+
"os"
56
"strings"
67
"testing"
78

@@ -20,7 +21,9 @@ func TestRemove(t *testing.T) {
2021
deployFullStack(t, stackname)
2122
defer cleanupFullStack(t, stackname)
2223

23-
result := icmd.RunCmd(shell(t, "docker stack rm %s", stackname))
24+
result := icmd.RunCmd(shell(t, "docker version"))
25+
fmt.Println(result.Stdout(), os.Getenv("DOCKER_HOST"), os.Getenv("TEST_DOCKER_HOST"))
26+
result = icmd.RunCmd(shell(t, "docker stack rm %s", stackname))
2427

2528
result.Assert(t, icmd.Expected{Err: icmd.None})
2629
golden.Assert(t, result.Stdout(), "stack-remove-success.golden")

0 commit comments

Comments
 (0)