Make the builds reproducable based on commit sha

This commit is contained in:
Thomas Boerger 2016-02-21 11:06:41 +01:00
parent b77b10d76f
commit 34301a49d9
2 changed files with 4 additions and 3 deletions

View File

@ -2,8 +2,9 @@
EXECUTABLE ?= drone-ssh EXECUTABLE ?= drone-ssh
IMAGE ?= plugins/$(EXECUTABLE) IMAGE ?= plugins/$(EXECUTABLE)
COMMIT ?= $(shell git rev-parse --short HEAD)
LDFLAGS = -X "main.buildDate=$(shell date -u '+%Y-%m-%d %H:%M:%S %Z')" LDFLAGS = -X "main.buildCommit=$(COMMIT)"
PACKAGES = $(shell go list ./... | grep -v /vendor/) PACKAGES = $(shell go list ./... | grep -v /vendor/)
all: deps build test all: deps build test

View File

@ -14,11 +14,11 @@ import (
) )
var ( var (
buildDate string buildCommit string
) )
func main() { func main() {
fmt.Printf("Drone SSH Plugin built at %s\n", buildDate) fmt.Printf("Drone SSH Plugin built from %s\n", buildCommit)
workspace := drone.Workspace{} workspace := drone.Workspace{}
vargs := Params{} vargs := Params{}