-
Notifications
You must be signed in to change notification settings - Fork 127
/
Taskfile.yml
82 lines (71 loc) · 2.71 KB
/
Taskfile.yml
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
version: '3'
vars:
AD_GLOBAL_REQUIRES: --require asciidoctor-diagram --verbose --require asciidoctor-pdf --backend pdf --attribute allow-uri-read
CONTAINER: asciidoctor/docker-asciidoctor
# CONTAINER: docker-asciidoctor:local
DOCKER_ASCIIDOCTOR: docker run -it -u $(id -u):$(id -g) -v $(pwd):/documents/ {{.CONTAINER}} asciidoctor {{.AD_GLOBAL_REQUIRES}} --require asciidoctor-kroki
GIT_SHORT_SHA:
sh: git log -n 1 --format=%h
env:
GOOS: linux
GO111MODULE: on
tasks:
default:
deps: [convert-example-project-adoc-to-pdf]
build-and-test:
desc: build threagile and run tests
deps: [build-threagile, run-tests]
build-threagile:
desc: build threagile
sources:
- "**/*.go"
- exclude: "**/*_test.go"
generates:
- bin/threagile
vars:
GOFLAGS: -a -ldflags="-s -w -X main.buildTimestamp=$(shell date '+%Y%m%d%H%M%S')"
cmds:
- go mod download
- go build -o bin/threagile cmd/threagile/main.go
run-tests:
desc: run threagile tests
deps: [build-threagile]
cmds:
- go test ./...
convert-example-project-adoc-to-pdf:
desc: create example project and create a pdf from the asciidoctor output
deps: [create-example-project]
dir: /tmp/threagile-test/adocReport
cmds:
- "{{.DOCKER_ASCIIDOCTOR}} --attribute DOC_VERSION={{.GIT_SHORT_SHA}} --attribute pdf-themesdir=/documents/theme --attribute pdf-theme=pdf /documents/00_main.adoc"
- cp /tmp/threagile-test/adocReport/00_main.pdf /tmp/report.pdf
- echo "Open report with \"xdg-open /tmp/report.pdf\""
create-example-project:
desc: create the example project
deps: [build-threagile]
env:
YAML: ./demo/example/threagile.yaml
CONFIG: ./demo/example/threagile-example-config.json
cmds:
- mkdir -p /tmp/threagile-test
- ./bin/threagile analyze-model
--model ${YAML}
--output /tmp/threagile-test
--ignore-orphaned-risk-tracking
--app-dir .
--generate-report-adoc
--generate-report-pdf=1
--verbose
--config ${CONFIG}
--background ./report/template/background.pdf
golangci-lint:
desc: run golangci-lint on current code
cmds:
- docker run --rm -it -v $(pwd):/app -w /app golangci/golangci-lint golangci-lint run -v
gosec:
desc: run securego/gosec
cmds:
- docker run --rm -it -v $(pwd):/app -w /app securego/gosec /app/...
linting:
desc: all linting jobs
deps: [golangci-lint, gosec]