0
0
mirror of https://github.com/thegeeklab/wp-opentofu.git synced 2024-09-19 15:32:45 +02:00

Make the builds reproducable based on commit sha

This commit is contained in:
Thomas Boerger 2016-02-21 11:06:41 +01:00
parent 651fadbc16
commit 417188af50

View File

@ -2,8 +2,9 @@
EXECUTABLE ?= drone-terraform
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/)
all: deps build test