We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ad5c481 + a4dea17 commit f4e515fCopy full SHA for f4e515f
1 file changed
Makefile
@@ -46,6 +46,11 @@ build-revision:
46
$(eval GO_LDFLAGS = -ldflags '-X ${repo_path}/version.Version=${GIT_TAG}-${REVISION}')
47
gox -verbose ${GO_LDFLAGS} -os="${BUILD_OS}" -arch="${BUILD_ARCH}" -output="${DIST_DIR}/${REVISION}/deis-${REVISION}-{{.OS}}-{{.Arch}}" .
48
49
+# This is supposed to be run within a docker container
50
+build-stable:
51
+ $(eval GO_LDFLAGS = -ldflags '-X ${repo_path}/version.Version=${GIT_TAG}')
52
+ gox -verbose ${GO_LDFLAGS} -os="${BUILD_OS}" -arch="${BUILD_ARCH}" -output="${DIST_DIR}/deis-stable-{{.OS}}-{{.Arch}}" .
53
+
54
# This is supposed to be run within a docker container
55
build-tag:
56
$(eval GO_LDFLAGS = -ldflags '-X ${repo_path}/version.Version=${GIT_TAG}')
0 commit comments