'.drone.yml' ändern
the build is pending Details

This commit is contained in:
an 2018-02-22 18:29:28 +00:00
parent 9619e760af
commit 1394e59741
1 changed files with 8 additions and 2 deletions

View File

@ -2,12 +2,11 @@ pipeline:
build:
image: golang:1.9
environment:
- FOO=2
- IMAGE=dr.dnix.de/$DRONE_REPO_NAME
commands:
- REV=$(git rev-list HEAD --count)
- BUILDDATE=$(date)
- BRANCH=$DRONE_COMMIT_BRANCH
- IMAGE=dr.dnix.de/$DRONE_REPO_NAME
- VERSIONGO=version.go
- echo "Building image $IMAGE:$BRANCH-$REV"
- echo "package main" >$VERSIONGO
@ -26,4 +25,11 @@ pipeline:
- cat version.go
- go get -d ./...
- go build
publish:
image: plugins/docker
environment:
- IMAGE=dr.dnix.de/$DRONE_REPO_NAME
- REV=$(git rev-list HEAD --count)
repo: $IMAGE
tags: [ $REV, latest ]