We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 796d042 commit 4a12725Copy full SHA for 4a12725
Makefile
@@ -1,6 +1,6 @@
1
-VERSION ?= 1.0.0-SNAPSHOT
+VERSION = $(shell git describe --tags --always --dirty)
2
IMG ?= amazon/aws-node-termination-handler
3
-IMG_W_TAG = ${IMG}:v${VERSION}
+IMG_W_TAG = ${IMG}:${VERSION}
4
DOCKER_USERNAME ?= ""
5
DOCKER_PASSWORD ?= ""
6
@@ -19,3 +19,17 @@ version:
19
20
image:
21
@echo ${IMG_W_TAG}
22
+
23
+e2e-test:
24
+ test/spot-termination-test/run-spot-termination-test.sh -d
25
26
+compatibility-test:
27
+ test/k8s-compatibility-test/run-k8s-compatibility-test.sh
28
29
+license-test:
30
+ test/license-test/run-license-test.sh
31
32
+go-report-card-test:
33
+ test/go-report-card-test/run-report-card-test.sh
34
35
+test: e2e-test compatibility-test license-test go-report-card-test
0 commit comments