Skip to content
Snippets Groups Projects
Commit b7e2eb4b authored by Bob Mottram's avatar Bob Mottram
Browse files

makefile condition

parent ad70f564
No related branches found
No related tags found
No related merge requests found
......@@ -41,10 +41,13 @@ IMAGE = $(NAME).img
ARCHIVE = $(IMAGE).xz
SIGNATURE = $(ARCHIVE).sig
OWNER = 1000
if [ ! "$CONTINUOUS_INTEGRATION" ]; then
ifeq ("$CONTINUOUS_INTEGRATION", "")
XZ =
SIGN =
else
XZ = xz --no-warn --verbose --keep --threads=0 -3
SIGN = -gpg --output $(SIGNATURE) --detach-sig $(ARCHIVE)
fi
endif
# settings for `make test`
TEST_SSH_PORT = 2222
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment