We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5cf41b5 commit 685eb10Copy full SHA for 685eb10
integration/benchnet2/Makefile
@@ -1,12 +1,17 @@
1
# eventually, DOCKER_TAG will use the git commit hash
2
# this isn't working fully yet so fow now we will specify the explicit Git tag to use as the Docker tag
3
#DOCKER_TAG := $(shell git rev-parse --short HEAD)
4
-FLOW_GO_TAG = v0.28.15
5
-DOCKER_TAG := $(FLOW_GO_TAG)
6
COMMIT_SHA:=$(shell git rev-parse --short=9 HEAD)
7
BRANCH_NAME:=$(shell git rev-parse --abbrev-ref HEAD | tr '/' '-')
8
9
+ifeq (${FLOW_GO_TAG},)
+FLOW_GO_TAG := ${COMMIT_SHA}
10
+endif
11
+
12
+DOCKER_TAG := $(FLOW_GO_TAG)
13
14
15
# default value of the Docker base registry URL which can be overriden when invoking the Makefile
16
DOCKER_REGISTRY := us-west1-docker.pkg.dev/dl-flow-benchnet-automation/benchnet
17
0 commit comments