Skip to content

Commit

Permalink
Fix some build failures
Browse files Browse the repository at this point in the history
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
  • Loading branch information
vdemeester committed Dec 1, 2017
1 parent 35e276e commit 6c2693f
Show file tree
Hide file tree
Showing 50 changed files with 7 additions and 18,402 deletions.
1 change: 0 additions & 1 deletion circle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ jobs:
docker build -f $dockerfile --tag cli-builder:$CIRCLE_BUILD_NUM .
name=cross-$CIRCLE_BUILD_NUM-$CIRCLE_NODE_INDEX
docker run \
-e VERSION=$VERSION \
-e CROSS_GROUP=$CIRCLE_NODE_INDEX \
--name $name cli-builder:$CIRCLE_BUILD_NUM \
make cross
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/Dockerfile.dev
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

FROM golang:1.9.2-alpine3.6

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

ARG VNDR_SHA=a6e196d8b4b0cbbdc29aebdb20c59ac6926bb384
RUN go get -d github.com/LK4D4/vndr && \
Expand Down
2 changes: 2 additions & 0 deletions e2e/compose-env.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ services:
image: 'docker:${TEST_ENGINE_VERSION:-edge-dind}'
privileged: true
command: ['--insecure-registry=registry:5000']
depends_on:
- registry

notary-server:
image: 'notary:server-0.4.2'
Expand Down
5 changes: 4 additions & 1 deletion e2e/stack/remove_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ package stack

import (
"fmt"
"os"
"strings"
"testing"

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

result := icmd.RunCmd(shell(t, "docker stack rm %s", stackname))
result := icmd.RunCmd(shell(t, "docker version"))
fmt.Println(result.Stdout(), os.Getenv("DOCKER_HOST"), os.Getenv("TEST_DOCKER_HOST"))
result = icmd.RunCmd(shell(t, "docker stack rm %s", stackname))

result.Assert(t, icmd.Expected{Err: icmd.None})
golden.Assert(t, result.Stdout(), "stack-remove-success.golden")
Expand Down
60 changes: 0 additions & 60 deletions vendor/github.com/docker/docker/hack/README.md

This file was deleted.

This file was deleted.

This file was deleted.

97 changes: 0 additions & 97 deletions vendor/github.com/docker/docker/pkg/archive/example_changes.go

This file was deleted.

76 changes: 0 additions & 76 deletions vendor/github.com/google/btree/btree_mem.go

This file was deleted.

Loading

0 comments on commit 6c2693f

Please sign in to comment.