2020-05-15 09:39:16 +00:00
PREFIX ?= "/tmp/crowdsec/"
CFG_PREFIX = $( PREFIX) "/etc/crowdsec/"
BIN_PREFIX = $( PREFIX) "/usr/local/bin/"
DATA_PREFIX = $( PREFIX) "/var/run/crowdsec/"
PLUGIN_FOLDER = "./plugins"
PID_DIR = $( PREFIX) "/var/run/"
CROWDSEC_FOLDER = "./cmd/crowdsec"
CSCLI_FOLDER = "./cmd/crowdsec-cli/"
CROWDSEC_BIN = "crowdsec"
CSCLI_BIN = "cscli"
BUILD_CMD = "build"
GOARCH = amd64
GOOS = linux
#Current versioning information from env
2020-10-29 09:07:03 +00:00
GO_MAJOR_VERSION = $( shell go version | cut -c 14- | cut -d' ' -f1 | cut -d'.' -f1)
GO_MINOR_VERSION = $( shell go version | cut -c 14- | cut -d' ' -f1 | cut -d'.' -f2)
MINIMUM_SUPPORTED_GO_MAJOR_VERSION = 1
MINIMUM_SUPPORTED_GO_MINOR_VERSION = 13
GO_VERSION_VALIDATION_ERR_MSG = Golang version ( $( BUILD_GOVERSION) ) is not supported, please use least $( MINIMUM_SUPPORTED_GO_MAJOR_VERSION) .$( MINIMUM_SUPPORTED_GO_MINOR_VERSION)
2020-09-01 12:32:45 +00:00
BUILD_VERSION ?= " $( shell git describe --tags ` git rev-list --tags --max-count= 1` ) "
2020-06-10 12:24:02 +00:00
BUILD_GOVERSION = " $( shell go version | cut -d " " -f3 | sed -r 's/[go]+//g' ) "
BUILD_CODENAME = $( shell cat RELEASE.json | jq -r .CodeName)
BUILD_TIMESTAMP = $( shell date +%F"_" %T)
BUILD_TAG = " $( shell git rev-parse HEAD) "
2020-07-29 15:36:59 +00:00
export LD_OPTS = -ldflags " -s -w -X github.com/crowdsecurity/crowdsec/pkg/cwversion.Version= $( BUILD_VERSION) \
2020-05-15 09:39:16 +00:00
- X g i t h u b . c o m / c r o w d s e c u r i t y / c r o w d s e c / p k g / cwversion.BuildDate = $( BUILD_TIMESTAMP) \
- X g i t h u b . c o m / c r o w d s e c u r i t y / c r o w d s e c / p k g / cwversion.Codename = $( BUILD_CODENAME) \
- X g i t h u b . c o m / c r o w d s e c u r i t y / c r o w d s e c / p k g / cwversion.Tag = $( BUILD_TAG) \
- X g i t h u b . c o m / c r o w d s e c u r i t y / c r o w d s e c / p k g / cwversion.GoVersion = $( BUILD_GOVERSION) "
RELDIR = crowdsec-$( BUILD_VERSION)
all : clean test build
build : clean goversion crowdsec cscli
static : goversion crowdsec_static cscli_static
goversion :
2020-10-29 09:07:03 +00:00
@if [ $( GO_MAJOR_VERSION) -gt $( MINIMUM_SUPPORTED_GO_MAJOR_VERSION) ] ; then \
exit 0 ; \
elif [ $( GO_MAJOR_VERSION) -lt $( MINIMUM_SUPPORTED_GO_MAJOR_VERSION) ] ; then \
echo '$(GO_VERSION_VALIDATION_ERR_MSG)' ; \
exit 1; \
elif [ $( GO_MINOR_VERSION) -lt $( MINIMUM_SUPPORTED_GO_MINOR_VERSION) ] ; then \
echo '$(GO_VERSION_VALIDATION_ERR_MSG)' ; \
exit 1; \
fi
2020-06-11 13:03:43 +00:00
hubci :
@rm -rf crowdsec-xxx hub-tests
BUILD_VERSION = xxx make release
@git clone https://github.com/crowdsecurity/hub-tests.git
@cd hub-tests && make
@cd crowdsec-xxx && ./test_env.sh
@cd crowdsec-xxx/tests && bash ../../scripts/install_all.sh
@cp hub-tests/main ./crowdsec-xxx/tests/
@cp -R hub-tests/tests ./crowdsec-xxx/tests/
@cd ./crowdsec-xxx/tests/ && bash ../../hub-tests/run_tests.sh
2020-05-15 09:39:16 +00:00
clean :
@make -C $( CROWDSEC_FOLDER) clean --no-print-directory
@make -C $( CSCLI_FOLDER) clean --no-print-directory
@rm -f $( CROWDSEC_BIN)
@rm -f $( CSCLI_BIN)
@rm -f *.log
2020-10-29 09:07:03 +00:00
cscli : goversion
2020-05-15 09:39:16 +00:00
@make -C $( CSCLI_FOLDER) build --no-print-directory
2020-10-29 09:07:03 +00:00
crowdsec : goversion
2020-05-15 09:39:16 +00:00
@make -C $( CROWDSEC_FOLDER) build --no-print-directory
2020-05-27 10:37:04 +00:00
@bash ./scripts/build_plugins.sh
2020-05-15 09:39:16 +00:00
2020-10-29 09:07:03 +00:00
cscli_static : goversion
2020-05-15 09:39:16 +00:00
@make -C $( CSCLI_FOLDER) static --no-print-directory
2020-10-29 09:07:03 +00:00
crowdsec_static : goversion
2020-05-15 09:39:16 +00:00
@make -C $( CROWDSEC_FOLDER) static --no-print-directory
#.PHONY: test
test :
@make -C $( CROWDSEC_FOLDER) test --no-print-directory
.PHONY : uninstall
uninstall :
@rm -rf " $( CFG_PREFIX) " || exit
@rm -rf " $( DATA_PREFIX) " || exit
@rm -rf " $( SYSTEMD_PATH_FILE) " || exit
.PHONY : check_release
check_release :
@if [ -d $( RELDIR) ] ; then echo " $( RELDIR) already exists, abort " ; exit 1 ; fi
.PHONY :
release : check_release build
@echo Building Release to dir $( RELDIR)
@mkdir -p $( RELDIR) /cmd/crowdsec
@mkdir -p $( RELDIR) /cmd/crowdsec-cli
@cp $( CROWDSEC_FOLDER) /$( CROWDSEC_BIN) $( RELDIR) /cmd/crowdsec
@cp $( CSCLI_FOLDER) /$( CSCLI_BIN) $( RELDIR) /cmd/crowdsec-cli
@cp -R ./config/ $( RELDIR)
@cp wizard.sh $( RELDIR)
@cp scripts/test_env.sh $( RELDIR)
@bash ./scripts/build_plugins.sh
@mkdir -p " $( RELDIR) /plugins/backend "
@find ./plugins -type f -name "*.so" -exec install -Dm 644 { } " $( RELDIR) /{} " \; || exiting
@tar cvzf crowdsec-release.tgz $( RELDIR)