Skip to content

Commit

Permalink
Merge pull request #613 from okushchenko/add-dep
Browse files Browse the repository at this point in the history
Replace godep with dep
  • Loading branch information
okushchenko authored Oct 10, 2017
2 parents f288e72 + 203442f commit 95ba861
Show file tree
Hide file tree
Showing 1,205 changed files with 331,906 additions and 34,405 deletions.
24 changes: 6 additions & 18 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
language: go
go:
- 1.8
- 1.x
- tip
env:
- VAULT_ADDR='http://127.0.0.1:8200' CONSUL_VERSION=0.9.3 ETCD_VERSION=3.2.5 DYNAMODB_VERSION=2017-02-16 VAULT_VERSION=0.8.1 ZOOKEEPER_VERSION=3.4.10 RANCHER_VERSION=0.6.0
- VAULT_ADDR='http://127.0.0.1:8200' CONSUL_VERSION=0.9.3 ETCD_VERSION=3.2.8 DYNAMODB_VERSION=2017-02-16 VAULT_VERSION=0.8.1 ZOOKEEPER_VERSION=3.4.10 RANCHER_VERSION=0.6.0
services:
- redis
before_install:
Expand Down Expand Up @@ -40,20 +40,8 @@ before_install:
# Run AWS SSM mocking server
- go run ./integration/ssm/main.go &
install:
- sudo pip install awscli
- go get golang.org/x/tools/cmd/cover
- ./build
- sudo ./install
- make build
- sudo make install
script:
- ./test
- bash integration/consul/test.sh
- bash integration/env/test.sh
- bash integration/etcd/test.sh
- bash integration/etcdv3/test.sh
- bash integration/redis/test.sh
- bash integration/rancher/test.sh
- bash integration/vault/test.sh
- bash integration/file/test.sh
- bash integration/zookeeper/test.sh
- bash integration/dynamodb/test.sh
- bash integration/ssm/test.sh
- make test
- make integration
12 changes: 4 additions & 8 deletions Dockerfile.build.alpine
Original file line number Diff line number Diff line change
@@ -1,11 +1,7 @@
FROM alpine:3.4
FROM golang:1.9-alpine

ENV GOPATH /go

RUN mkdir -p "$GOPATH/src/" "$GOPATH/bin" && chmod -R 777 "$GOPATH" && \
mkdir -p /go/src/github.com/kelseyhightower/confd

RUN apk --update add go bash && \
ln -s /go/src/github.com/kelseyhightower/confd /app
RUN apk add --no-cache make
RUN mkdir -p /go/src/github.com/kelseyhightower/confd && \
ln -s /go/src/github.com/kelseyhightower/confd /app

WORKDIR /app
Loading

0 comments on commit 95ba861

Please sign in to comment.