From 9148cc289f479dd535844c819bdabcf80718305b Mon Sep 17 00:00:00 2001 From: Bartek Grzybowski Date: Wed, 25 Mar 2020 11:25:29 +0100 Subject: Add 'build' target for 'sslendpoints' project To follow a common protocol of testing Golang based applications in CI we need a 'build' target for doing a local (non-docker) build to verify 'go build' routine. It's however not added to "all" target as that one already references docker based build by default. Change-Id: I2e380ef09a1ae18456d7288f853d085617149338 Issue-ID: SECCOM-261 Signed-off-by: Bartek Grzybowski --- test/security/sslendpoints/Makefile | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'test/security') diff --git a/test/security/sslendpoints/Makefile b/test/security/sslendpoints/Makefile index cf5c34d72..a213e1a09 100644 --- a/test/security/sslendpoints/Makefile +++ b/test/security/sslendpoints/Makefile @@ -7,6 +7,11 @@ BINARIES := $(addprefix ${BUILD_DIR}/, ${BINARIES}) .PHONY: all all: docker-build +.PHONY: build +build: + mkdir -p "${BUILD_DIR}" + go build -o "${BUILD_DIR}/${BINARIES}" + .PHONY: clean clean: clean-docker-build clean-build -- cgit 1.2.3-korg