Skip to content

Commit

Permalink
install dependencies before running tests
Browse files Browse the repository at this point in the history
  • Loading branch information
tahsinrahman committed May 25, 2018
1 parent 8c7ef16 commit 962f633
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion hack/concourse/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ resources:
- name: creds
type: s3
source:
bucket: appscode
bucket: kubedbci
access_key_id: ((s3-access-key))
secret_access_key: ((s3-secret))
versioned_file: gcs.zip
Expand Down
7 changes: 6 additions & 1 deletion hack/concourse/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ docker run hello-world

# install python pip
apt-get update > /dev/null
apt-get install -y python python-pip > /dev/null
apt-get install -y python python-pip gsutil git libwww-perl > /dev/null

# install kubectl
curl -LO https://storage.googleapis.com/kubernetes-release/release/$(curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt)/bin/linux/amd64/kubectl &> /dev/null
Expand Down Expand Up @@ -54,6 +54,11 @@ pushd $GOPATH/src/github.com/appscode/searchlight
NAME=searchlight-$(git rev-parse --short HEAD)

./hack/builddeps.sh
go get -u golang.org/x/tools/cmd/goimports
go get github.com/Masterminds/glide
go get github.com/sgotti/glide-vc
go get github.com/onsi/ginkgo/ginkgo
go install github.com/onsi/ginkgo/ginkgo

export APPSCODE_ENV=dev
export DOCKER_REGISTRY=appscodeci
Expand Down

0 comments on commit 962f633

Please sign in to comment.