forked from rosineygp/mkdkr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitlab-ci.yml
107 lines (85 loc) · 1.38 KB
/
.gitlab-ci.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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
# pipeline autogen by mkdkr_exporter
# https://gitlab.com/rosiney.gp/mkdkr_exporter
stages:
- lint
- test
- bash
- examples
services:
- docker:19.03.1-dind
variables:
DOCKER_HOST: tcp://docker:2376
DOCKER_TLS_CERTDIR: "/certs"
image: rosiney/mkdkr
lint commit:
stage: lint
script:
- make lint.commit
lint shellcheck:
stage: lint
script:
- make lint.shellcheck
lint hadolint:
stage: lint
script:
- make lint.hadolint
test unit:
stage: test
script:
- make test.unit
bash v5-0:
stage: bash
script:
- make bash.v5-0
bash v4-4:
stage: bash
script:
- make bash.v4-4
bash v4-3:
stage: bash
script:
- make bash.v4-3
bash v4-2:
stage: bash
script:
- make bash.v4-2
bash v4-1:
stage: bash
script:
- make bash.v4-1
bash v4-0:
stage: bash
script:
- make bash.v4-0
examples simple:
stage: examples
script:
- make examples.simple
examples service:
stage: examples
script:
- make examples.service
examples dind:
stage: examples
script:
- make examples.dind
examples escapes:
stage: examples
script:
- make examples.escapes
examples stdout:
stage: examples
script:
- make examples.stdout
examples shell:
stage: examples
script:
- make examples.shell
examples retry:
stage: examples
script:
- make examples.retry
examples pipeline:
stage: examples
script:
- make examples.pipeline