Merge pull request #4 from netmanagers/refactor-config-add-service
[arvados-formula.git] / .travis.yml
1 # -*- coding: utf-8 -*-
2 # vim: ft=yaml
3 ---
4 ## Machine config
5 os: 'linux'
6 arch: 'amd64'
7 dist: 'bionic'
8 version: '~> 1.0'
9
10 ## Language and cache config
11 language: 'ruby'
12 cache: 'bundler'
13
14 ## Services config
15 services:
16   - docker
17
18 ## Script to run for the test stage
19 script:
20   - bin/kitchen verify "${INSTANCE}"
21
22 ## Stages and jobs matrix
23 stages:
24   - test
25   - name: 'release'
26     if: 'branch = master AND type != pull_request'
27 jobs:
28   include:
29     ## Define the test stage that runs the linters (and testing matrix, if applicable)
30
31     # Run all of the linters in a single job
32     - language: 'node_js'
33       node_js: 'lts/*'
34       cache:
35         directories:
36           - $HOME/.cache/pre-commit
37       env: 'Lint'
38       name: 'Lint: salt-lint, yamllint, rubocop, shellcheck & commitlint'
39       before_install: 'skip'
40       script:
41         # Install and run `salt-lint`
42         - pip install --user salt-lint
43         - git ls-files -- '*.sls' '*.jinja' '*.j2' '*.tmpl' '*.tst'
44                         | xargs salt-lint
45         # Install and run `yamllint`
46         # Need at least `v1.17.0` for the `yaml-files` setting
47         - pip install --user yamllint>=1.17.0
48         - yamllint -s .
49         # Install and run `rubocop`
50         - gem install rubocop
51         - rubocop -d
52         # Run `shellcheck` (already pre-installed in Travis)
53         - shellcheck --version
54         - git ls-files -- '*.sh' '*.bash' '*.ksh'
55                         | xargs shellcheck
56         # Install and run `commitlint`
57         - npm i -D @commitlint/config-conventional
58                    @commitlint/travis-cli
59         - commitlint-travis
60         # Install and run `pre-commit`
61         - pip install pre-commit
62         - pre-commit run --all-files --verbose
63         - pre-commit run --hook-stage manual --verbose commitlint-travis
64
65     # Run `pre-commit` linters in a single job
66     - language: 'python'
67       env: 'Lint_pre-commit'
68       name: 'Lint: pre-commit'
69       before_install: 'skip'
70       cache:
71         directories:
72           - $HOME/.cache/pre-commit
73       script:
74         # Install and run `pre-commit`
75         - pip install pre-commit==2.7.1
76         - pre-commit run --all-files --color always --verbose
77         - pre-commit run --color always --hook-stage manual --verbose commitlint-travis
78
79     ## Define the rest of the matrix based on Kitchen testing
80     # Make sure the instances listed below match up with
81     # the `platforms` defined in `kitchen.yml`
82
83     # - env: INSTANCE=api-debian-10-tiamat-py3
84     # - env: INSTANCE=api-debian-9-tiamat-py3
85     # - env: INSTANCE=api-ubuntu-2004-tiamat-py3
86     # - env: INSTANCE=api-ubuntu-1804-tiamat-py3
87     # - env: INSTANCE=api-centos-7-tiamat-py3
88     # - env: INSTANCE=api-debian-10-master-py3
89     # - env: INSTANCE=api-ubuntu-2004-master-py3
90     # - env: INSTANCE=api-ubuntu-1804-master-py3
91     - env: INSTANCE=api-debian-10-3001-py3
92     # - env: INSTANCE=api-debian-9-3001-py3
93     # - env: INSTANCE=api-ubuntu-2004-3001-py3
94     # - env: INSTANCE=api-ubuntu-1804-3001-py3
95     # - env: INSTANCE=api-centos-7-3001-py3
96     # - env: INSTANCE=api-debian-10-3000-3-py3
97     # - env: INSTANCE=api-debian-9-3000-3-py3
98     # - env: INSTANCE=api-ubuntu-1804-3000-3-py3
99     # - env: INSTANCE=api-centos-7-3000-3-py3
100     # - env: INSTANCE=api-ubuntu-1804-3000-3-py2
101     # - env: INSTANCE=workbench-debian-10-tiamat-py3
102     # - env: INSTANCE=workbench-debian-9-tiamat-py3
103     # - env: INSTANCE=workbench-ubuntu-2004-tiamat-py3
104     # - env: INSTANCE=workbench-ubuntu-1804-tiamat-py3
105     # - env: INSTANCE=workbench-centos-7-tiamat-py3
106     # - env: INSTANCE=workbench-debian-10-master-py3
107     # - env: INSTANCE=workbench-ubuntu-2004-master-py3
108     - env: INSTANCE=workbench-ubuntu-1804-master-py3
109     # - env: INSTANCE=workbench-debian-10-3001-py3
110     # - env: INSTANCE=workbench-debian-9-3001-py3
111     # - env: INSTANCE=workbench-ubuntu-2004-3001-py3
112     # - env: INSTANCE=workbench-ubuntu-1804-3001-py3
113     # - env: INSTANCE=workbench-centos-7-3001-py3
114     # - env: INSTANCE=workbench-debian-10-3000-3-py3
115     # - env: INSTANCE=workbench-debian-9-3000-3-py3
116     # - env: INSTANCE=workbench-ubuntu-1804-3000-3-py3
117     # - env: INSTANCE=workbench-centos-7-3000-3-py3
118     # - env: INSTANCE=workbench-ubuntu-1804-3000-3-py2
119     # - env: INSTANCE=shell-debian-10-tiamat-py3
120     # - env: INSTANCE=shell-debian-9-tiamat-py3
121     # - env: INSTANCE=shell-ubuntu-2004-tiamat-py3
122     # - env: INSTANCE=shell-ubuntu-1804-tiamat-py3
123     # - env: INSTANCE=shell-centos-7-tiamat-py3
124     # - env: INSTANCE=shell-debian-10-master-py3
125     # - env: INSTANCE=shell-ubuntu-2004-master-py3
126     # - env: INSTANCE=shell-ubuntu-1804-master-py3
127     - env: INSTANCE=shell-debian-10-3001-py3
128     # - env: INSTANCE=shell-debian-9-3001-py3
129     # - env: INSTANCE=shell-ubuntu-2004-3001-py3
130     # - env: INSTANCE=shell-ubuntu-1804-3001-py3
131     # - env: INSTANCE=shell-centos-7-3001-py3
132     # - env: INSTANCE=shell-debian-10-3000-3-py3
133     # - env: INSTANCE=shell-debian-9-3000-3-py3
134     # - env: INSTANCE=shell-ubuntu-1804-3000-3-py3
135     # - env: INSTANCE=shell-centos-7-3000-3-py3
136     # - env: INSTANCE=shell-ubuntu-1804-3000-3-py2
137     # - env: INSTANCE=keepstore-debian-10-tiamat-py3
138     # - env: INSTANCE=keepstore-debian-9-tiamat-py3
139     # - env: INSTANCE=keepstore-ubuntu-2004-tiamat-py3
140     # - env: INSTANCE=keepstore-ubuntu-1804-tiamat-py3
141     # - env: INSTANCE=keepstore-centos-7-tiamat-py3
142     # - env: INSTANCE=keepstore-debian-10-master-py3
143     # - env: INSTANCE=keepstore-ubuntu-2004-master-py3
144     # - env: INSTANCE=keepstore-ubuntu-1804-master-py3
145     # - env: INSTANCE=keepstore-debian-10-3001-py3
146     # - env: INSTANCE=keepstore-debian-9-3001-py3
147     # - env: INSTANCE=keepstore-ubuntu-2004-3001-py3
148     # - env: INSTANCE=keepstore-ubuntu-1804-3001-py3
149     # - env: INSTANCE=keepstore-centos-7-3001-py3
150     # - env: INSTANCE=keepstore-debian-10-3000-3-py3
151     # - env: INSTANCE=keepstore-debian-9-3000-3-py3
152     # - env: INSTANCE=keepstore-ubuntu-1804-3000-3-py3
153     # - env: INSTANCE=keepstore-centos-7-3000-3-py3
154     - env: INSTANCE=keepstore-ubuntu-1804-3000-3-py2
155
156     ## Define the release stage that runs `semantic-release`
157     - stage: 'release'
158       language: 'node_js'
159       node_js: 'lts/*'
160       env: 'Release'
161       name: 'Run semantic-release inc. file updates to AUTHORS, CHANGELOG & FORMULA'
162       before_install: 'skip'
163       script:
164         # Update `AUTHORS.md`
165         - export MAINTAINER_TOKEN=${GH_TOKEN}
166         - go get github.com/myii/maintainer
167         - maintainer contributor
168
169         # Install all dependencies required for `semantic-release`
170         - npm i -D @semantic-release/changelog@3
171                    @semantic-release/exec@3
172                    @semantic-release/git@7
173       deploy:
174         provider: 'script'
175         # Opt-in to `dpl v2` to complete the Travis build config validation (beta)
176         # * https://docs.travis-ci.com/user/build-config-validation
177         # Deprecated `skip_cleanup` can now be avoided, `cleanup: false` is by default
178         edge: true
179         # Run `semantic-release`
180         script: 'npx semantic-release@15.14'