Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions gci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
version: 0.0.1
build:
output-binary: rootfs/bin/steward
env:
- GOOS=linux
- GOARCH=amd64
docker:
image-name: quay.io/deisci/steward
tag: devel
build:
context:
dir: rootfs
push:
auth-file-location: ~/.docker/config.json
custom:
- name: bootstrap
description: bootstrap all dependencies for this project
image-name: quay.io/deis/go-dev
image-tag: "0.17.0"
command: "glide install"
mount-target: /go/src/github.com/deis/steward
env: ["GOPATH=/go"]
- name: test
description: run unit tests
image-name: quay.io/deis/go-dev
image-tag: "0.17.0"
mount-target: /go/src/github.com/deis/steward
command: go test . ./config... ./k8s/... ./mode/... ./web/...