mirror of https://github.com/docker/cli.git
Cleanup dockerfiles and circle
Signed-off-by: Daniel Nephin <dnephin@docker.com>
This commit is contained in:
parent
a14762c6d2
commit
0f91d9e6c4
11
circle.yml
11
circle.yml
|
@ -4,7 +4,7 @@ jobs:
|
||||||
|
|
||||||
lint:
|
lint:
|
||||||
working_directory: /work
|
working_directory: /work
|
||||||
docker: [{image: 'docker:17.05-git'}]
|
docker: [{image: 'docker:17.06-git'}]
|
||||||
steps:
|
steps:
|
||||||
- checkout
|
- checkout
|
||||||
- setup_remote_docker:
|
- setup_remote_docker:
|
||||||
|
@ -22,7 +22,7 @@ jobs:
|
||||||
|
|
||||||
cross:
|
cross:
|
||||||
working_directory: /work
|
working_directory: /work
|
||||||
docker: [{image: 'docker:17.05-git'}]
|
docker: [{image: 'docker:17.06-git'}]
|
||||||
parallelism: 3
|
parallelism: 3
|
||||||
steps:
|
steps:
|
||||||
- checkout
|
- checkout
|
||||||
|
@ -48,7 +48,7 @@ jobs:
|
||||||
|
|
||||||
test:
|
test:
|
||||||
working_directory: /work
|
working_directory: /work
|
||||||
docker: [{image: 'docker:17.05-git'}]
|
docker: [{image: 'docker:17.06-git'}]
|
||||||
steps:
|
steps:
|
||||||
- checkout
|
- checkout
|
||||||
- setup_remote_docker:
|
- setup_remote_docker:
|
||||||
|
@ -75,9 +75,8 @@ jobs:
|
||||||
|
|
||||||
validate:
|
validate:
|
||||||
working_directory: /work
|
working_directory: /work
|
||||||
docker: [{image: 'docker:17.05-git'}]
|
docker: [{image: 'docker:17.06-git'}]
|
||||||
steps:
|
steps:
|
||||||
- run: apk add -U git openssh
|
|
||||||
- checkout
|
- checkout
|
||||||
- setup_remote_docker:
|
- setup_remote_docker:
|
||||||
reusable: true
|
reusable: true
|
||||||
|
@ -93,7 +92,7 @@ jobs:
|
||||||
make -B vendor compose-jsonschema manpages yamldocs
|
make -B vendor compose-jsonschema manpages yamldocs
|
||||||
shellcheck:
|
shellcheck:
|
||||||
working_directory: /work
|
working_directory: /work
|
||||||
docker: [{image: 'docker:17.05-git'}]
|
docker: [{image: 'docker:17.06-git'}]
|
||||||
steps:
|
steps:
|
||||||
- checkout
|
- checkout
|
||||||
- setup_remote_docker
|
- setup_remote_docker
|
||||||
|
|
|
@ -4,21 +4,21 @@ FROM golang:1.8.3-alpine
|
||||||
RUN apk add -U git make bash coreutils
|
RUN apk add -U git make bash coreutils
|
||||||
|
|
||||||
ARG VNDR_SHA=9909bb2b8a0b7ea464527b376dc50389c90df587
|
ARG VNDR_SHA=9909bb2b8a0b7ea464527b376dc50389c90df587
|
||||||
RUN go get github.com/LK4D4/vndr && \
|
RUN go get -d github.com/LK4D4/vndr && \
|
||||||
cd /go/src/github.com/LK4D4/vndr && \
|
cd /go/src/github.com/LK4D4/vndr && \
|
||||||
git checkout -q "$VNDR_SHA" && \
|
git checkout -q "$VNDR_SHA" && \
|
||||||
go build -v -o /usr/bin/vndr . && \
|
go build -v -o /usr/bin/vndr . && \
|
||||||
rm -rf /go/src/* /go/pkg/* /go/bin/*
|
rm -rf /go/src/* /go/pkg/* /go/bin/*
|
||||||
|
|
||||||
ARG BINDATA_SHA=a0ff2567cfb70903282db057e799fd826784d41d
|
ARG BINDATA_SHA=a0ff2567cfb70903282db057e799fd826784d41d
|
||||||
RUN go get github.com/jteeuwen/go-bindata/go-bindata && \
|
RUN go get -d github.com/jteeuwen/go-bindata/go-bindata && \
|
||||||
cd /go/src/github.com/jteeuwen/go-bindata/go-bindata && \
|
cd /go/src/github.com/jteeuwen/go-bindata/go-bindata && \
|
||||||
git checkout -q "$BINDATA_SHA" && \
|
git checkout -q "$BINDATA_SHA" && \
|
||||||
go build -v -o /usr/bin/go-bindata . && \
|
go build -v -o /usr/bin/go-bindata . && \
|
||||||
rm -rf /go/src/* /go/pkg/* /go/bin/*
|
rm -rf /go/src/* /go/pkg/* /go/bin/*
|
||||||
|
|
||||||
ARG FILEWATCHER_SHA=2e12ea42f6c8c089b19e992145bb94e8adaecedb
|
ARG FILEWATCHER_SHA=2e12ea42f6c8c089b19e992145bb94e8adaecedb
|
||||||
RUN go get github.com/dnephin/filewatcher && \
|
RUN go get -d github.com/dnephin/filewatcher && \
|
||||||
cd /go/src/github.com/dnephin/filewatcher && \
|
cd /go/src/github.com/dnephin/filewatcher && \
|
||||||
git checkout -q "$FILEWATCHER_SHA" && \
|
git checkout -q "$FILEWATCHER_SHA" && \
|
||||||
go build -v -o /usr/bin/filewatcher . && \
|
go build -v -o /usr/bin/filewatcher . && \
|
||||||
|
|
|
@ -3,7 +3,7 @@ FROM golang:1.8.3-alpine
|
||||||
RUN apk add -U git
|
RUN apk add -U git
|
||||||
|
|
||||||
ARG GOMETALINTER_SHA=4306381615a2ba2a207f8fcea02c08c6b2b0803f
|
ARG GOMETALINTER_SHA=4306381615a2ba2a207f8fcea02c08c6b2b0803f
|
||||||
RUN go get github.com/alecthomas/gometalinter && \
|
RUN go get -d github.com/alecthomas/gometalinter && \
|
||||||
cd /go/src/github.com/alecthomas/gometalinter && \
|
cd /go/src/github.com/alecthomas/gometalinter && \
|
||||||
git checkout -q "$GOMETALINTER_SHA" && \
|
git checkout -q "$GOMETALINTER_SHA" && \
|
||||||
go build -v -o /usr/local/bin/gometalinter . && \
|
go build -v -o /usr/local/bin/gometalinter . && \
|
||||||
|
|
Loading…
Reference in New Issue