'.drone.yml' ändern
the build is pending
Details
the build is pending
Details
This commit is contained in:
parent
9619e760af
commit
1394e59741
10
.drone.yml
10
.drone.yml
|
@ -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 ]
|
||||
|
Loading…
Reference in New Issue