Compare commits
4 commits
master
...
fix-static
Author | SHA1 | Date | |
---|---|---|---|
|
df41ac0d3a | ||
|
1a51bc44a5 | ||
|
2829f5e2e4 | ||
|
17ad908748 |
15 changed files with 330 additions and 11 deletions
96
.github/workflows/bats-mysql-static.yml
vendored
Normal file
96
.github/workflows/bats-mysql-static.yml
vendored
Normal file
|
@ -0,0 +1,96 @@
|
||||||
|
name: Functional tests (MySQL - Static Build)
|
||||||
|
|
||||||
|
on:
|
||||||
|
workflow_call:
|
||||||
|
inputs:
|
||||||
|
database_image:
|
||||||
|
required: true
|
||||||
|
type: string
|
||||||
|
|
||||||
|
env:
|
||||||
|
PREFIX_TEST_NAMES_WITH_FILE: true
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
|
||||||
|
build:
|
||||||
|
name: "Build + tests"
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
timeout-minutes: 20
|
||||||
|
services:
|
||||||
|
database:
|
||||||
|
image: ${{ inputs.database_image }}
|
||||||
|
env:
|
||||||
|
MYSQL_ROOT_PASSWORD: "secret"
|
||||||
|
ports:
|
||||||
|
- 3306:3306
|
||||||
|
|
||||||
|
steps:
|
||||||
|
|
||||||
|
- name: "Force machineid"
|
||||||
|
run: |
|
||||||
|
sudo chmod +w /etc/machine-id
|
||||||
|
echo githubciXXXXXXXXXXXXXXXXXXXXXXXX | sudo tee /etc/machine-id
|
||||||
|
|
||||||
|
- name: "Set up Go 1.19"
|
||||||
|
uses: actions/setup-go@v3
|
||||||
|
with:
|
||||||
|
go-version: 1.19
|
||||||
|
id: go
|
||||||
|
|
||||||
|
- name: "Check out CrowdSec repository"
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
|
submodules: true
|
||||||
|
|
||||||
|
- name: "Install bats dependencies"
|
||||||
|
run: |
|
||||||
|
sudo apt -qq -y -o=Dpkg::Use-Pty=0 install build-essential daemonize jq netcat-openbsd
|
||||||
|
go install github.com/mikefarah/yq/v4@latest
|
||||||
|
go install github.com/cloudflare/cfssl/cmd/cfssl@master
|
||||||
|
go install github.com/cloudflare/cfssl/cmd/cfssljson@master
|
||||||
|
sudo cp -u ~/go/bin/yq ~/go/bin/cfssl ~/go/bin/cfssljson /usr/local/bin/
|
||||||
|
|
||||||
|
- name: "Build crowdsec and fixture"
|
||||||
|
run: |
|
||||||
|
make clean bats-build-static bats-fixture
|
||||||
|
env:
|
||||||
|
DB_BACKEND: mysql
|
||||||
|
MYSQL_HOST: 127.0.0.1
|
||||||
|
MYSQL_PORT: 3306
|
||||||
|
MYSQL_PASSWORD: "secret"
|
||||||
|
MYSQL_USER: root
|
||||||
|
|
||||||
|
- name: "Run tests"
|
||||||
|
run: make bats-test
|
||||||
|
env:
|
||||||
|
DB_BACKEND: mysql
|
||||||
|
MYSQL_HOST: 127.0.0.1
|
||||||
|
MYSQL_PORT: 3306
|
||||||
|
MYSQL_PASSWORD: "secret"
|
||||||
|
MYSQL_USER: root
|
||||||
|
|
||||||
|
#
|
||||||
|
# In case you need to inspect the database status after the failure of a given test
|
||||||
|
#
|
||||||
|
# - name: "Run specified tests"
|
||||||
|
# run: ./tests/run-tests tests/bats/<filename>.bats -f "<test name>"
|
||||||
|
|
||||||
|
- name: Show database dump
|
||||||
|
run: ./tests/instance-db dump /dev/fd/1
|
||||||
|
env:
|
||||||
|
DB_BACKEND: mysql
|
||||||
|
MYSQL_HOST: 127.0.0.1
|
||||||
|
MYSQL_PORT: 3306
|
||||||
|
MYSQL_PASSWORD: "secret"
|
||||||
|
MYSQL_USER: root
|
||||||
|
if: ${{ always() }}
|
||||||
|
|
||||||
|
- name: "Show crowdsec logs"
|
||||||
|
run:
|
||||||
|
for file in $(find ./tests/local/var/log -type f); do echo ">>>>> $file"; cat $file; echo; done
|
||||||
|
if: ${{ always() }}
|
||||||
|
|
||||||
|
- name: "Show database logs"
|
||||||
|
run: docker logs "${{ job.services.database.id }}"
|
||||||
|
if: ${{ always() }}
|
99
.github/workflows/bats-postgres-static.yml
vendored
Normal file
99
.github/workflows/bats-postgres-static.yml
vendored
Normal file
|
@ -0,0 +1,99 @@
|
||||||
|
name: Functional tests (Postgres - Static Build)
|
||||||
|
|
||||||
|
on:
|
||||||
|
workflow_call:
|
||||||
|
|
||||||
|
env:
|
||||||
|
PREFIX_TEST_NAMES_WITH_FILE: true
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
|
||||||
|
build:
|
||||||
|
name: "Build + tests"
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
timeout-minutes: 20
|
||||||
|
services:
|
||||||
|
database:
|
||||||
|
image: postgres:latest
|
||||||
|
env:
|
||||||
|
POSTGRES_PASSWORD: "secret"
|
||||||
|
ports:
|
||||||
|
- 5432:5432
|
||||||
|
options: >-
|
||||||
|
--health-cmd pg_isready -u postgres
|
||||||
|
--health-interval 10s
|
||||||
|
--health-timeout 5s
|
||||||
|
--health-retries 5
|
||||||
|
|
||||||
|
steps:
|
||||||
|
|
||||||
|
- name: "Force machineid"
|
||||||
|
run: |
|
||||||
|
sudo chmod +w /etc/machine-id
|
||||||
|
echo githubciXXXXXXXXXXXXXXXXXXXXXXXX | sudo tee /etc/machine-id
|
||||||
|
|
||||||
|
- name: "Set up Go 1.19"
|
||||||
|
uses: actions/setup-go@v3
|
||||||
|
with:
|
||||||
|
go-version: 1.19
|
||||||
|
id: go
|
||||||
|
|
||||||
|
- name: "Check out CrowdSec repository"
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
|
submodules: true
|
||||||
|
|
||||||
|
- name: "Install bats dependencies"
|
||||||
|
run: |
|
||||||
|
sudo apt -qq -y -o=Dpkg::Use-Pty=0 install build-essential daemonize jq netcat-openbsd
|
||||||
|
go install github.com/mikefarah/yq/v4@latest
|
||||||
|
go install github.com/cloudflare/cfssl/cmd/cfssl@master
|
||||||
|
go install github.com/cloudflare/cfssl/cmd/cfssljson@master
|
||||||
|
sudo cp -u ~/go/bin/yq ~/go/bin/cfssl ~/go/bin/cfssljson /usr/local/bin/
|
||||||
|
|
||||||
|
- name: "Build crowdsec and fixture (DB_BACKEND: pgx)"
|
||||||
|
run: |
|
||||||
|
make clean bats-build-static bats-fixture
|
||||||
|
env:
|
||||||
|
DB_BACKEND: pgx
|
||||||
|
PGHOST: 127.0.0.1
|
||||||
|
PGPORT: 5432
|
||||||
|
PGPASSWORD: "secret"
|
||||||
|
PGUSER: postgres
|
||||||
|
|
||||||
|
- name: "Run tests (DB_BACKEND: pgx)"
|
||||||
|
run: make bats-test
|
||||||
|
env:
|
||||||
|
DB_BACKEND: pgx
|
||||||
|
PGHOST: 127.0.0.1
|
||||||
|
PGPORT: 5432
|
||||||
|
PGPASSWORD: "secret"
|
||||||
|
PGUSER: postgres
|
||||||
|
|
||||||
|
- name: "Build crowdsec and fixture (DB_BACKEND: postgres)"
|
||||||
|
run: make clean bats-build bats-fixture
|
||||||
|
env:
|
||||||
|
DB_BACKEND: postgres
|
||||||
|
PGHOST: 127.0.0.1
|
||||||
|
PGPORT: 5432
|
||||||
|
PGPASSWORD: "secret"
|
||||||
|
PGUSER: postgres
|
||||||
|
|
||||||
|
- name: "Run tests (DB_BACKEND: postgres)"
|
||||||
|
run: make bats-test
|
||||||
|
env:
|
||||||
|
DB_BACKEND: postgres
|
||||||
|
PGHOST: 127.0.0.1
|
||||||
|
PGPORT: 5432
|
||||||
|
PGPASSWORD: "secret"
|
||||||
|
PGUSER: postgres
|
||||||
|
|
||||||
|
- name: "Show crowdsec logs"
|
||||||
|
run:
|
||||||
|
for file in $(find ./tests/local/var/log -type f); do echo ">>>>> $file"; cat $file; echo; done
|
||||||
|
if: ${{ always() }}
|
||||||
|
|
||||||
|
- name: "Show database logs"
|
||||||
|
run: docker logs "${{ job.services.database.id }}"
|
||||||
|
if: ${{ always() }}
|
80
.github/workflows/bats-sqlite-coverage-static.yml
vendored
Normal file
80
.github/workflows/bats-sqlite-coverage-static.yml
vendored
Normal file
|
@ -0,0 +1,80 @@
|
||||||
|
name: Functional tests (sqlite - Static Build)
|
||||||
|
|
||||||
|
on:
|
||||||
|
workflow_call:
|
||||||
|
|
||||||
|
env:
|
||||||
|
PREFIX_TEST_NAMES_WITH_FILE: true
|
||||||
|
TEST_COVERAGE: true
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
|
||||||
|
build:
|
||||||
|
name: "Build + tests"
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
timeout-minutes: 20
|
||||||
|
|
||||||
|
steps:
|
||||||
|
|
||||||
|
- name: "Force machineid"
|
||||||
|
run: |
|
||||||
|
sudo chmod +w /etc/machine-id
|
||||||
|
echo githubciXXXXXXXXXXXXXXXXXXXXXXXX | sudo tee /etc/machine-id
|
||||||
|
|
||||||
|
- name: "Set up Go 1.19"
|
||||||
|
uses: actions/setup-go@v3
|
||||||
|
with:
|
||||||
|
go-version: 1.19
|
||||||
|
id: go
|
||||||
|
|
||||||
|
- name: "Check out CrowdSec repository"
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
|
submodules: true
|
||||||
|
|
||||||
|
- name: "Install bats dependencies"
|
||||||
|
run: |
|
||||||
|
sudo apt -qq -y -o=Dpkg::Use-Pty=0 install build-essential daemonize jq netcat-openbsd
|
||||||
|
go install github.com/mikefarah/yq/v4@latest
|
||||||
|
go install github.com/cloudflare/cfssl/cmd/cfssl@master
|
||||||
|
go install github.com/cloudflare/cfssl/cmd/cfssljson@master
|
||||||
|
sudo cp -u ~/go/bin/yq ~/go/bin/cfssl ~/go/bin/cfssljson /usr/local/bin/
|
||||||
|
go install github.com/wadey/gocovmerge@latest
|
||||||
|
sudo cp -u ~/go/bin/gocovmerge /usr/local/bin/
|
||||||
|
|
||||||
|
- name: "Build crowdsec and fixture"
|
||||||
|
run: |
|
||||||
|
make clean bats-build-static bats-fixture
|
||||||
|
|
||||||
|
- name: "Run tests"
|
||||||
|
run: make bats-test
|
||||||
|
|
||||||
|
#
|
||||||
|
# In case you need to inspect the database status after the failure of a given test
|
||||||
|
#
|
||||||
|
# - name: "Run specified tests"
|
||||||
|
# run: ./tests/run-tests tests/bats/<filename>.bats -f "<test name>"
|
||||||
|
|
||||||
|
- name: "Show database dump"
|
||||||
|
run: |
|
||||||
|
./tests/instance-crowdsec stop
|
||||||
|
sqlite3 ./tests/local/var/lib/crowdsec/data/crowdsec.db '.dump'
|
||||||
|
if: ${{ always() }}
|
||||||
|
|
||||||
|
- name: "Show crowdsec logs"
|
||||||
|
run:
|
||||||
|
for file in $(find ./tests/local/var/log -type f); do echo ">>>>> $file"; cat $file; echo; done
|
||||||
|
if: ${{ always() }}
|
||||||
|
|
||||||
|
- name: Upload crowdsec coverage to codecov
|
||||||
|
uses: codecov/codecov-action@v2
|
||||||
|
with:
|
||||||
|
files: ./tests/local/var/lib/coverage/coverage-crowdsec.out
|
||||||
|
flags: func-crowdsec
|
||||||
|
|
||||||
|
- name: Upload cscli coverage to codecov
|
||||||
|
uses: codecov/codecov-action@v2
|
||||||
|
with:
|
||||||
|
files: ./tests/local/var/lib/coverage/coverage-cscli.out
|
||||||
|
flags: func-cscli
|
16
.github/workflows/bats.yml
vendored
16
.github/workflows/bats.yml
vendored
|
@ -26,6 +26,9 @@ jobs:
|
||||||
sqlite:
|
sqlite:
|
||||||
uses: ./.github/workflows/bats-sqlite-coverage.yml
|
uses: ./.github/workflows/bats-sqlite-coverage.yml
|
||||||
|
|
||||||
|
sqlite-static:
|
||||||
|
uses: ./.github/workflows/bats-sqlite-coverage-static.yml
|
||||||
|
|
||||||
# Jobs for Postgres (and sometimes MySQL) can have failing tests on GitHub
|
# Jobs for Postgres (and sometimes MySQL) can have failing tests on GitHub
|
||||||
# CI, but they pass when run on devs' machines or in the release checks. We
|
# CI, but they pass when run on devs' machines or in the release checks. We
|
||||||
# disable them here by default. Remove the if..false to enable them.
|
# disable them here by default. Remove the if..false to enable them.
|
||||||
|
@ -35,14 +38,27 @@ jobs:
|
||||||
with:
|
with:
|
||||||
database_image: mariadb:latest
|
database_image: mariadb:latest
|
||||||
|
|
||||||
|
mariadb-static:
|
||||||
|
uses: ./.github/workflows/bats-mysql-static.yml
|
||||||
|
with:
|
||||||
|
database_image: mariadb:latest
|
||||||
|
|
||||||
mysql:
|
mysql:
|
||||||
uses: ./.github/workflows/bats-mysql.yml
|
uses: ./.github/workflows/bats-mysql.yml
|
||||||
with:
|
with:
|
||||||
database_image: mysql:latest
|
database_image: mysql:latest
|
||||||
|
|
||||||
|
mysql-static:
|
||||||
|
uses: ./.github/workflows/bats-mysql-static.yml
|
||||||
|
with:
|
||||||
|
database_image: mysql:latest
|
||||||
|
|
||||||
postgres:
|
postgres:
|
||||||
uses: ./.github/workflows/bats-postgres.yml
|
uses: ./.github/workflows/bats-postgres.yml
|
||||||
|
|
||||||
|
postgres-static:
|
||||||
|
uses: ./.github/workflows/bats-postgres-static.yml
|
||||||
|
|
||||||
hub:
|
hub:
|
||||||
uses: ./.github/workflows/bats-hub.yml
|
uses: ./.github/workflows/bats-hub.yml
|
||||||
secrets:
|
secrets:
|
||||||
|
|
6
.github/workflows/go-tests-windows.yml
vendored
6
.github/workflows/go-tests-windows.yml
vendored
|
@ -18,7 +18,9 @@ jobs:
|
||||||
build:
|
build:
|
||||||
name: "Build + tests"
|
name: "Build + tests"
|
||||||
runs-on: windows-2022
|
runs-on: windows-2022
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
build-type: ["build", "static"]
|
||||||
steps:
|
steps:
|
||||||
|
|
||||||
- name: "Set up Go 1.19"
|
- name: "Set up Go 1.19"
|
||||||
|
@ -35,7 +37,7 @@ jobs:
|
||||||
|
|
||||||
- name: Build
|
- name: Build
|
||||||
run: |
|
run: |
|
||||||
make build
|
make ${{ matrix.build-type }}
|
||||||
|
|
||||||
- name: Run tests
|
- name: Run tests
|
||||||
run: |
|
run: |
|
||||||
|
|
5
.github/workflows/go-tests.yml
vendored
5
.github/workflows/go-tests.yml
vendored
|
@ -33,6 +33,9 @@ jobs:
|
||||||
build:
|
build:
|
||||||
name: "Build + tests"
|
name: "Build + tests"
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
build-type: ["build", "static"]
|
||||||
services:
|
services:
|
||||||
localstack:
|
localstack:
|
||||||
image: localstack/localstack:0.13.3
|
image: localstack/localstack:0.13.3
|
||||||
|
@ -122,7 +125,7 @@ jobs:
|
||||||
|
|
||||||
- name: Build
|
- name: Build
|
||||||
run: |
|
run: |
|
||||||
make build
|
make ${{ matrix.build-type }}
|
||||||
|
|
||||||
- name: Run tests
|
- name: Run tests
|
||||||
run: |
|
run: |
|
||||||
|
|
8
Makefile
8
Makefile
|
@ -59,7 +59,7 @@ LD_OPTS_VARS= \
|
||||||
-X 'github.com/crowdsecurity/crowdsec/pkg/csconfig.defaultDataDir=$(DEFAULT_DATADIR)'
|
-X 'github.com/crowdsecurity/crowdsec/pkg/csconfig.defaultDataDir=$(DEFAULT_DATADIR)'
|
||||||
|
|
||||||
export LD_OPTS=-ldflags "-s -w $(LD_OPTS_VARS)"
|
export LD_OPTS=-ldflags "-s -w $(LD_OPTS_VARS)"
|
||||||
export LD_OPTS_STATIC=-ldflags "-s -w $(LD_OPTS_VARS) -extldflags '-static'"
|
export LD_OPTS_STATIC=-ldflags "-s -w $(LD_OPTS_VARS) -extldflags '-static'" -tags netgo,osusergo,sqlite_omit_load_extension
|
||||||
|
|
||||||
GOCMD=go
|
GOCMD=go
|
||||||
GOTEST=$(GOCMD) test
|
GOTEST=$(GOCMD) test
|
||||||
|
@ -118,12 +118,18 @@ cscli: goversion
|
||||||
cscli-bincover: goversion
|
cscli-bincover: goversion
|
||||||
@GOARCH=$(GOARCH) GOOS=$(GOOS) $(MAKE) -C $(CSCLI_FOLDER) build-bincover --no-print-directory
|
@GOARCH=$(GOARCH) GOOS=$(GOOS) $(MAKE) -C $(CSCLI_FOLDER) build-bincover --no-print-directory
|
||||||
|
|
||||||
|
cscli-bincover_static: goversion
|
||||||
|
@GOARCH=$(GOARCH) GOOS=$(GOOS) $(MAKE) -C $(CSCLI_FOLDER) build-bincover_static --no-print-directory
|
||||||
|
|
||||||
crowdsec: goversion
|
crowdsec: goversion
|
||||||
@$(MAKE) -C $(CROWDSEC_FOLDER) build --no-print-directory GOARCH=$(GOARCH) GOOS=$(GOOS) RM="$(RM)" WIN_IGNORE_ERR="$(WIN_IGNORE_ERR)" CP="$(CP)" CPR="$(CPR)" MKDIR="$(MKDIR)"
|
@$(MAKE) -C $(CROWDSEC_FOLDER) build --no-print-directory GOARCH=$(GOARCH) GOOS=$(GOOS) RM="$(RM)" WIN_IGNORE_ERR="$(WIN_IGNORE_ERR)" CP="$(CP)" CPR="$(CPR)" MKDIR="$(MKDIR)"
|
||||||
|
|
||||||
crowdsec-bincover: goversion
|
crowdsec-bincover: goversion
|
||||||
@GOARCH=$(GOARCH) GOOS=$(GOOS) $(MAKE) -C $(CROWDSEC_FOLDER) build-bincover --no-print-directory
|
@GOARCH=$(GOARCH) GOOS=$(GOOS) $(MAKE) -C $(CROWDSEC_FOLDER) build-bincover --no-print-directory
|
||||||
|
|
||||||
|
crowdsec-bincover_static: goversion
|
||||||
|
@GOARCH=$(GOARCH) GOOS=$(GOOS) $(MAKE) -C $(CROWDSEC_FOLDER) build-bincover_static --no-print-directory
|
||||||
|
|
||||||
http-plugin: goversion
|
http-plugin: goversion
|
||||||
@$(MAKE) -C $(HTTP_PLUGIN_FOLDER) build --no-print-directory GOARCH=$(GOARCH) GOOS=$(GOOS) RM="$(RM)" WIN_IGNORE_ERR="$(WIN_IGNORE_ERR)" CP="$(CP)" CPR="$(CPR)" MKDIR="$(MKDIR)"
|
@$(MAKE) -C $(HTTP_PLUGIN_FOLDER) build --no-print-directory GOARCH=$(GOARCH) GOOS=$(GOOS) RM="$(RM)" WIN_IGNORE_ERR="$(WIN_IGNORE_ERR)" CP="$(CP)" CPR="$(CPR)" MKDIR="$(MKDIR)"
|
||||||
|
|
||||||
|
|
|
@ -26,8 +26,12 @@ build: clean
|
||||||
build-bincover: clean
|
build-bincover: clean
|
||||||
$(GOTEST) . -tags testrunmain -coverpkg=$(go list github.com/crowdsecurity/crowdsec/... | grep -v -e 'pkg/database' -e 'plugins/notifications' -e 'pkg/protobufs' -e 'pkg/cwversions' -e 'pkg/cstest' -e 'pkg/models') -covermode=atomic $(LD_OPTS) -c -o $(BINARY_NAME_COVER)
|
$(GOTEST) . -tags testrunmain -coverpkg=$(go list github.com/crowdsecurity/crowdsec/... | grep -v -e 'pkg/database' -e 'plugins/notifications' -e 'pkg/protobufs' -e 'pkg/cwversions' -e 'pkg/cstest' -e 'pkg/models') -covermode=atomic $(LD_OPTS) -c -o $(BINARY_NAME_COVER)
|
||||||
|
|
||||||
|
build-bincover_static: clean
|
||||||
|
$(GOTEST) . -tags testrunmain -coverpkg=$(go list github.com/crowdsecurity/crowdsec/... | grep -v -e 'pkg/database' -e 'plugins/notifications' -e 'pkg/protobufs' -e 'pkg/cwversions' -e 'pkg/cstest' -e 'pkg/models') -covermode=atomic $(LD_OPTS_STATIC) -c -o $(BINARY_NAME_COVER)
|
||||||
|
|
||||||
|
|
||||||
static: clean
|
static: clean
|
||||||
@$(GOBUILD) $(LD_OPTS_STATIC) -o $(BINARY_NAME) -a -tags netgo
|
@$(GOBUILD) $(LD_OPTS_STATIC) -o $(BINARY_NAME) -a
|
||||||
|
|
||||||
.PHONY: install
|
.PHONY: install
|
||||||
install: install-conf install-bin
|
install: install-conf install-bin
|
||||||
|
|
|
@ -31,8 +31,11 @@ build: clean
|
||||||
build-bincover: clean
|
build-bincover: clean
|
||||||
$(GOTEST) . -tags testrunmain -coverpkg=$(go list github.com/crowdsecurity/crowdsec/... | grep -v -e 'pkg/database' -e 'plugins/notifications' -e 'pkg/protobufs' -e 'pkg/cwversions' -e 'pkg/cstest' -e 'pkg/models') -covermode=atomic $(LD_OPTS) -c -o $(CROWDSEC_BIN_COVER)
|
$(GOTEST) . -tags testrunmain -coverpkg=$(go list github.com/crowdsecurity/crowdsec/... | grep -v -e 'pkg/database' -e 'plugins/notifications' -e 'pkg/protobufs' -e 'pkg/cwversions' -e 'pkg/cstest' -e 'pkg/models') -covermode=atomic $(LD_OPTS) -c -o $(CROWDSEC_BIN_COVER)
|
||||||
|
|
||||||
|
build-bincover_static: clean
|
||||||
|
$(GOTEST) . -tags testrunmain -coverpkg=$(go list github.com/crowdsecurity/crowdsec/... | grep -v -e 'pkg/database' -e 'plugins/notifications' -e 'pkg/protobufs' -e 'pkg/cwversions' -e 'pkg/cstest' -e 'pkg/models') -covermode=atomic $(LD_OPTS_STATIC) -c -o $(CROWDSEC_BIN_COVER)
|
||||||
|
|
||||||
static: clean
|
static: clean
|
||||||
$(GOBUILD) $(LD_OPTS_STATIC) -o $(CROWDSEC_BIN) -a -tags netgo
|
$(GOBUILD) $(LD_OPTS_STATIC) -o $(CROWDSEC_BIN) -a
|
||||||
|
|
||||||
test:
|
test:
|
||||||
$(GOTEST) $(LD_OPTS) -v ./...
|
$(GOTEST) $(LD_OPTS) -v ./...
|
||||||
|
|
|
@ -20,4 +20,4 @@ build: clean
|
||||||
@$(GOBUILD) $(LD_OPTS) -o $(BINARY_NAME)
|
@$(GOBUILD) $(LD_OPTS) -o $(BINARY_NAME)
|
||||||
|
|
||||||
static: clean
|
static: clean
|
||||||
$(GOBUILD) $(LD_OPTS_STATIC) -o $(BINARY_NAME) -a -tags netgo
|
$(GOBUILD) $(LD_OPTS_STATIC) -o $(BINARY_NAME) -a
|
||||||
|
|
|
@ -20,4 +20,4 @@ build: clean
|
||||||
@$(GOBUILD) $(LD_OPTS) -o $(BINARY_NAME)
|
@$(GOBUILD) $(LD_OPTS) -o $(BINARY_NAME)
|
||||||
|
|
||||||
static: clean
|
static: clean
|
||||||
$(GOBUILD) $(LD_OPTS_STATIC) -o $(BINARY_NAME) -a -tags netgo
|
$(GOBUILD) $(LD_OPTS_STATIC) -o $(BINARY_NAME) -a
|
||||||
|
|
|
@ -20,4 +20,4 @@ build: clean
|
||||||
$(GOBUILD) $(LD_OPTS) -o $(BINARY_NAME)
|
$(GOBUILD) $(LD_OPTS) -o $(BINARY_NAME)
|
||||||
|
|
||||||
static: clean
|
static: clean
|
||||||
$(GOBUILD) $(LD_OPTS_STATIC) -o $(BINARY_NAME) -a -tags netgo
|
$(GOBUILD) $(LD_OPTS_STATIC) -o $(BINARY_NAME) -a
|
||||||
|
|
|
@ -20,4 +20,4 @@ clean:
|
||||||
|
|
||||||
|
|
||||||
static: clean
|
static: clean
|
||||||
$(GOBUILD) $(LD_OPTS_STATIC) -o $(BINARY_NAME) -a -tags netgo
|
$(GOBUILD) $(LD_OPTS_STATIC) -o $(BINARY_NAME) -a
|
||||||
|
|
|
@ -21,4 +21,4 @@ clean:
|
||||||
@$(RM) $(BINARY_NAME) $(WIN_IGNORE_ERR)
|
@$(RM) $(BINARY_NAME) $(WIN_IGNORE_ERR)
|
||||||
|
|
||||||
static: clean
|
static: clean
|
||||||
$(GOBUILD) $(LD_OPTS_STATIC) -o $(BINARY_NAME) -a -tags netgo
|
$(GOBUILD) $(LD_OPTS_STATIC) -o $(BINARY_NAME) -a
|
||||||
|
|
|
@ -63,6 +63,8 @@ endef
|
||||||
|
|
||||||
bats-all: bats-clean bats-build bats-fixture bats-test bats-test-hub
|
bats-all: bats-clean bats-build bats-fixture bats-test bats-test-hub
|
||||||
|
|
||||||
|
bats-all-static: bats-clean bats-build-static bats-fixture bats-test bats-test-hub
|
||||||
|
|
||||||
# Source this to run the scripts outside of the Makefile
|
# Source this to run the scripts outside of the Makefile
|
||||||
# Old versions of make don't have $(file) directive
|
# Old versions of make don't have $(file) directive
|
||||||
bats-environment: export ENV:=$(ENV)
|
bats-environment: export ENV:=$(ENV)
|
||||||
|
@ -82,6 +84,14 @@ bats-build: bats-environment bats-check-requirements
|
||||||
@BINCOVER_TESTING=$(BINCOVER_TESTING) DEFAULT_CONFIGDIR=$(CONFIG_DIR) DEFAULT_DATADIR=$(DATA_DIR) $(MAKE) goversion crowdsec-bincover cscli-bincover
|
@BINCOVER_TESTING=$(BINCOVER_TESTING) DEFAULT_CONFIGDIR=$(CONFIG_DIR) DEFAULT_DATADIR=$(DATA_DIR) $(MAKE) goversion crowdsec-bincover cscli-bincover
|
||||||
@install -m 0755 cmd/crowdsec/crowdsec.cover cmd/crowdsec-cli/cscli.cover $(BIN_DIR)/
|
@install -m 0755 cmd/crowdsec/crowdsec.cover cmd/crowdsec-cli/cscli.cover $(BIN_DIR)/
|
||||||
|
|
||||||
|
bats-build-static: bats-environment bats-check-requirements
|
||||||
|
@mkdir -p $(BIN_DIR) $(LOG_DIR) $(PID_DIR) $(PLUGIN_DIR)
|
||||||
|
@BINCOVER_TESTING=$(BINCOVER_TESTING) DEFAULT_CONFIGDIR=$(CONFIG_DIR) DEFAULT_DATADIR=$(DATA_DIR) $(MAKE) goversion crowdsec_static cscli_static plugins_static
|
||||||
|
@install -m 0755 cmd/crowdsec/crowdsec cmd/crowdsec-cli/cscli $(BIN_DIR)/
|
||||||
|
@install -m 0755 plugins/notifications/*/notification-* $(PLUGIN_DIR)/
|
||||||
|
@BINCOVER_TESTING=$(BINCOVER_TESTING) DEFAULT_CONFIGDIR=$(CONFIG_DIR) DEFAULT_DATADIR=$(DATA_DIR) $(MAKE) goversion crowdsec-bincover_static cscli-bincover_static
|
||||||
|
@install -m 0755 cmd/crowdsec/crowdsec.cover cmd/crowdsec-cli/cscli.cover $(BIN_DIR)/
|
||||||
|
|
||||||
# Create a reusable package with initial configuration + data
|
# Create a reusable package with initial configuration + data
|
||||||
bats-fixture:
|
bats-fixture:
|
||||||
@$(TEST_DIR)/instance-data make
|
@$(TEST_DIR)/instance-data make
|
||||||
|
|
Loading…
Reference in a new issue