2022-07-01 10:19:21 +00:00
|
|
|
---
|
|
|
|
# This workflow is actually running
|
|
|
|
# tests (with localstack) but the
|
|
|
|
# name is used for the badge in README.md
|
|
|
|
|
|
|
|
name: Build
|
2022-06-17 14:12:49 +00:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [master]
|
|
|
|
paths-ignore:
|
|
|
|
- 'README.md'
|
|
|
|
pull_request:
|
|
|
|
branches: [master]
|
|
|
|
paths-ignore:
|
|
|
|
- 'README.md'
|
2020-07-27 10:18:55 +00:00
|
|
|
|
2022-04-13 13:44:23 +00:00
|
|
|
# these env variables are for localstack, so we can emulate aws services
|
2021-06-11 07:53:53 +00:00
|
|
|
env:
|
2022-06-17 14:12:49 +00:00
|
|
|
RICHGO_FORCE_COLOR: 1
|
2021-06-11 07:53:53 +00:00
|
|
|
AWS_HOST: localstack
|
2022-01-11 13:19:43 +00:00
|
|
|
SERVICES: cloudwatch,logs,kinesis
|
2022-06-17 14:12:49 +00:00
|
|
|
# these are to mimic aws config
|
2022-04-01 12:12:03 +00:00
|
|
|
AWS_ACCESS_KEY_ID: AKIAIOSFODNN7EXAMPLE
|
|
|
|
AWS_SECRET_ACCESS_KEY: wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY
|
|
|
|
AWS_REGION: us-east-1
|
2022-06-17 14:12:49 +00:00
|
|
|
# and to override our endpoint in aws sdk
|
2022-01-11 13:19:43 +00:00
|
|
|
AWS_ENDPOINT_FORCE: http://localhost:4566
|
2022-04-01 12:12:03 +00:00
|
|
|
KINESIS_INITIALIZE_STREAMS: "stream-1-shard:1,stream-2-shards:2"
|
2021-06-11 07:53:53 +00:00
|
|
|
|
2020-07-27 10:18:55 +00:00
|
|
|
jobs:
|
|
|
|
|
|
|
|
build:
|
2022-11-24 10:29:54 +00:00
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
go-version: [1.18, 1.x]
|
|
|
|
|
2022-04-01 12:12:03 +00:00
|
|
|
name: "Build + tests"
|
2020-07-27 10:18:55 +00:00
|
|
|
runs-on: ubuntu-latest
|
2021-06-11 07:53:53 +00:00
|
|
|
services:
|
|
|
|
localstack:
|
2022-01-11 13:19:43 +00:00
|
|
|
image: localstack/localstack:0.13.3
|
2021-06-11 07:53:53 +00:00
|
|
|
ports:
|
2022-06-17 14:12:49 +00:00
|
|
|
- 4566:4566 # Localstack exposes all services on the same port
|
2021-06-11 07:53:53 +00:00
|
|
|
env:
|
|
|
|
SERVICES: ${{ env.SERVICES }}
|
|
|
|
DEBUG: ""
|
|
|
|
DATA_DIR: ""
|
|
|
|
LAMBDA_EXECUTOR: ""
|
|
|
|
KINESIS_ERROR_PROBABILITY: ""
|
|
|
|
DOCKER_HOST: unix:///var/run/docker.sock
|
|
|
|
HOST_TMP_FOLDER: "/tmp"
|
2022-01-11 13:19:43 +00:00
|
|
|
KINESIS_INITIALIZE_STREAMS: ${{ env.KINESIS_INITIALIZE_STREAMS }}
|
2022-06-17 14:12:49 +00:00
|
|
|
HOSTNAME_EXTERNAL: ${{ env.AWS_HOST }} # Required so that resource urls are provided properly
|
|
|
|
# e.g sqs url will get localhost if we don't set this env to map our service
|
2021-06-11 07:53:53 +00:00
|
|
|
options: >-
|
|
|
|
--name=localstack
|
|
|
|
--health-cmd="curl -sS 127.0.0.1:4566 || exit 1"
|
|
|
|
--health-interval=10s
|
|
|
|
--health-timeout=5s
|
|
|
|
--health-retries=3
|
2022-08-30 15:03:45 +00:00
|
|
|
zoo1:
|
|
|
|
image: confluentinc/cp-zookeeper:7.1.1
|
|
|
|
ports:
|
|
|
|
- "2181:2181"
|
|
|
|
env:
|
|
|
|
ZOOKEEPER_CLIENT_PORT: 2181
|
|
|
|
ZOOKEEPER_SERVER_ID: 1
|
|
|
|
ZOOKEEPER_SERVERS: zoo1:2888:3888
|
|
|
|
options: >-
|
|
|
|
--name=zoo1
|
|
|
|
--health-cmd "jps -l | grep zookeeper"
|
|
|
|
--health-interval 10s
|
|
|
|
--health-timeout 5s
|
|
|
|
--health-retries 5
|
|
|
|
|
|
|
|
kafka1:
|
|
|
|
image: crowdsecurity/kafka-ssl
|
|
|
|
ports:
|
|
|
|
- "9093:9093"
|
|
|
|
- "9092:9092"
|
|
|
|
- "9999:9999"
|
|
|
|
env:
|
|
|
|
KAFKA_ADVERTISED_LISTENERS: LISTENER_DOCKER_INTERNAL://127.0.0.1:19092,LISTENER_DOCKER_EXTERNAL://127.0.0.1:9092,LISTENER_DOCKER_EXTERNAL_SSL://127.0.0.1:9093
|
|
|
|
KAFKA_LISTENER_SECURITY_PROTOCOL_MAP: LISTENER_DOCKER_INTERNAL:PLAINTEXT,LISTENER_DOCKER_EXTERNAL:PLAINTEXT,LISTENER_DOCKER_EXTERNAL_SSL:SSL
|
|
|
|
KAFKA_INTER_BROKER_LISTENER_NAME: LISTENER_DOCKER_INTERNAL
|
|
|
|
KAFKA_ZOOKEEPER_CONNECT: "zoo1:2181"
|
|
|
|
KAFKA_BROKER_ID: 1
|
|
|
|
KAFKA_LOG4J_LOGGERS: "kafka.controller=INFO,kafka.producer.async.DefaultEventHandler=INFO,state.change.logger=INFO"
|
|
|
|
KAFKA_OFFSETS_TOPIC_REPLICATION_FACTOR: 1
|
|
|
|
KAFKA_TRANSACTION_STATE_LOG_REPLICATION_FACTOR: 1
|
|
|
|
KAFKA_TRANSACTION_STATE_LOG_MIN_ISR: 1
|
|
|
|
KAFKA_JMX_PORT: 9999
|
|
|
|
KAFKA_JMX_HOSTNAME: "127.0.0.1"
|
|
|
|
KAFKA_AUTHORIZER_CLASS_NAME: kafka.security.authorizer.AclAuthorizer
|
|
|
|
KAFKA_ALLOW_EVERYONE_IF_NO_ACL_FOUND: "true"
|
|
|
|
KAFKA_SSL_KEYSTORE_FILENAME: kafka.kafka1.keystore.jks
|
|
|
|
KAFKA_SSL_KEYSTORE_CREDENTIALS: kafka1_keystore_creds
|
|
|
|
KAFKA_SSL_KEY_CREDENTIALS: kafka1_sslkey_creds
|
|
|
|
KAFKA_SSL_TRUSTSTORE_FILENAME: kafka.kafka1.truststore.jks
|
|
|
|
KAFKA_SSL_TRUSTSTORE_CREDENTIALS: kafka1_truststore_creds
|
|
|
|
KAFKA_SSL_ENABLED_PROTOCOLS: TLSv1.2
|
|
|
|
KAFKA_SSL_PROTOCOL: TLSv1.2
|
|
|
|
KAFKA_SSL_CLIENT_AUTH: none
|
|
|
|
KAFKA_AUTO_CREATE_TOPICS_ENABLE: "true"
|
|
|
|
options: >-
|
|
|
|
--name=kafka1
|
|
|
|
--health-cmd "kafka-broker-api-versions --version"
|
|
|
|
--health-interval 10s
|
|
|
|
--health-timeout 10s
|
|
|
|
--health-retries 5
|
2022-04-13 13:44:23 +00:00
|
|
|
|
2020-07-27 10:18:55 +00:00
|
|
|
steps:
|
2022-04-13 13:44:23 +00:00
|
|
|
|
2022-11-24 10:29:54 +00:00
|
|
|
- name: "Set up Go ${{ matrix.go-version }}"
|
2022-04-05 09:00:11 +00:00
|
|
|
uses: actions/setup-go@v3
|
2020-07-27 10:18:55 +00:00
|
|
|
with:
|
2022-11-24 10:29:54 +00:00
|
|
|
go-version: ${{ matrix.go-version }}
|
2020-07-27 10:18:55 +00:00
|
|
|
id: go
|
2022-04-13 13:44:23 +00:00
|
|
|
|
2022-06-17 14:12:49 +00:00
|
|
|
- name: Check out CrowdSec repository
|
2022-04-05 09:00:11 +00:00
|
|
|
uses: actions/checkout@v3
|
2022-04-13 13:44:23 +00:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
submodules: false
|
|
|
|
|
2022-09-14 12:22:57 +00:00
|
|
|
- name: Build and run tests
|
2022-06-17 14:12:49 +00:00
|
|
|
run: |
|
|
|
|
go install github.com/ory/go-acc@v0.2.8
|
|
|
|
go install github.com/kyoh86/richgo@v0.3.10
|
2022-09-14 12:22:57 +00:00
|
|
|
set -o pipefail
|
|
|
|
make build
|
2022-06-17 14:12:49 +00:00
|
|
|
go-acc ./... -o coverage.out --ignore database,notifications,protobufs,cwversion,cstest,models \
|
|
|
|
| sed 's/ *coverage:.*of statements in.*//' \
|
|
|
|
| richgo testfilter
|
2022-04-13 13:44:23 +00:00
|
|
|
|
2022-09-14 12:22:57 +00:00
|
|
|
- name: Build and run tests (static)
|
|
|
|
run: |
|
2022-10-14 14:12:21 +00:00
|
|
|
make clean build BUILD_STATIC=yes
|
|
|
|
make test \
|
|
|
|
| richgo testfilter
|
2022-09-14 12:22:57 +00:00
|
|
|
|
2022-05-24 15:22:08 +00:00
|
|
|
- name: Upload unit coverage to Codecov
|
2022-10-24 10:48:25 +00:00
|
|
|
uses: codecov/codecov-action@v3
|
2020-07-27 10:18:55 +00:00
|
|
|
with:
|
2022-05-24 15:22:08 +00:00
|
|
|
files: coverage.out
|
|
|
|
flags: unit-linux
|