forked from rosineygp/mkdkr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
69 lines (64 loc) · 1.56 KB
/
.travis.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
# pipeline autogen by mkdkr_exporter
# https://gitlab.com/rosiney.gp/mkdkr_exporter
language: minimal
dist: bionic
services:
- docker
before_install:
- sudo apt-get install -y make
jobs:
include:
- stage: lint
name: lint commit
script: make lint.commit
- stage: lint
name: lint shellcheck
script: make lint.shellcheck
- stage: lint
name: lint hadolint
script: make lint.hadolint
- stage: test
name: test unit
script: make test.unit
- stage: bash
name: bash v5-0
script: make bash.v5-0
- stage: bash
name: bash v4-4
script: make bash.v4-4
- stage: bash
name: bash v4-3
script: make bash.v4-3
- stage: bash
name: bash v4-2
script: make bash.v4-2
- stage: bash
name: bash v4-1
script: make bash.v4-1
- stage: bash
name: bash v4-0
script: make bash.v4-0
- stage: examples
name: examples simple
script: make examples.simple
- stage: examples
name: examples service
script: make examples.service
- stage: examples
name: examples dind
script: make examples.dind
- stage: examples
name: examples escapes
script: make examples.escapes
- stage: examples
name: examples stdout
script: make examples.stdout
- stage: examples
name: examples shell
script: make examples.shell
- stage: examples
name: examples retry
script: make examples.retry
- stage: examples
name: examples pipeline
script: make examples.pipeline