-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathMakefile.vars
More file actions
39 lines (32 loc) · 1.47 KB
/
Makefile.vars
File metadata and controls
39 lines (32 loc) · 1.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# Setup default test timeout (default: 10s).
TEST_TIMEOUT := 15s
# Setup the activated commit hooks (default: pre-commit [pre-commit, commit-msg]).
GITHOOKS := pre-commit commit-msg
# Setup code quality level (default: base).
CODE_QUALITY := max
# Setup when to push images (default: pulls [never, pulls, merges])
IMAGE_PUSH := never
# Setup codacy integration (default: enabled [enabled, disabled]).
#CODACY := enabled
# Setup codacy code quality level (default: same as CODE_QUALITY).
#CODACY_QUALITY := max
# Customizing codacy server (default: https://api.codacy.com).
#CODACY_API_BASE_URL := https://api.codacy.com
# Continue after codacy shows violation (default: false / true [cdp-pipeline]).
#CODACY_CONTINUE := true
# Setup required targets before testing (default: <empty>).
#TEST_DEPS := run-db run-aws
# Setup required targets before running commands (default: <empty>).
#RUN_DEPS := run-db run-aws
# Setup required aws services for testing (comma separated, default: <empty>).
#AWS_SERVICES := sqs,s3
# Custom linters applied to prepare next level (default: <empty>).
LINTERS_CUSTOM :=
# Linters switched off to complete next level (default: <empty>).
LINTERS_DISABLED := forcetypeassert funcorder nlreturn
# Customize the build pipeline (default: init test lint build image).
TARGETS_ALL := git-verify init-hooks test lint build image
# Custom go tools to install (space separated list).
TOOLS_GO +=
# Setup private go modules (comma separated list).
GOPRIVATE := github.com/tkrop/*