chore(release): 1.1.2 [skip ci]
[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       env: 'Lint'
35       name: 'Lint: salt-lint, yamllint, rubocop, shellcheck & commitlint'
36       before_install: 'skip'
37       script:
38         # Install and run `salt-lint`
39         - pip install --user salt-lint
40         - git ls-files -- '*.sls' '*.jinja' '*.j2' '*.tmpl' '*.tst'
41                         | xargs salt-lint
42         # Install and run `yamllint`
43         # Need at least `v1.17.0` for the `yaml-files` setting
44         - pip install --user yamllint>=1.17.0
45         - yamllint -s .
46         # Install and run `rubocop`
47         - gem install rubocop
48         - rubocop -d
49         # Run `shellcheck` (already pre-installed in Travis)
50         - shellcheck --version
51         - git ls-files -- '*.sh' '*.bash' '*.ksh'
52                         | xargs shellcheck
53         # Install and run `commitlint`
54         - npm i -D @commitlint/config-conventional
55                    @commitlint/travis-cli
56         - commitlint-travis
57
58     # Run `pre-commit` linters in a single job
59     - language: 'python'
60       env: 'Lint_pre-commit'
61       name: 'Lint: pre-commit'
62       before_install: 'skip'
63       cache:
64         directories:
65           - $HOME/.cache/pre-commit
66       script:
67         # Install and run `pre-commit`
68         - pip install pre-commit==2.7.1
69         - pre-commit run --all-files --color always --verbose
70         - pre-commit run --color always --hook-stage manual --verbose commitlint-travis
71
72     ## Define the rest of the matrix based on Kitchen testing
73     # Make sure the instances listed below match up with
74     # the `platforms` defined in `kitchen.yml`
75     # - env: INSTANCE=api-debian-10-tiamat-py3
76     # - env: INSTANCE=keepstore-debian-10-tiamat-py3
77     # - env: INSTANCE=shell-debian-10-tiamat-py3
78     # - env: INSTANCE=workbench-debian-10-tiamat-py3
79     # - env: INSTANCE=api-debian-9-tiamat-py3
80     # - env: INSTANCE=keepstore-debian-9-tiamat-py3
81     # - env: INSTANCE=shell-debian-9-tiamat-py3
82     # - env: INSTANCE=workbench-debian-9-tiamat-py3
83     # - env: INSTANCE=api-ubuntu-2004-tiamat-py3
84     # - env: INSTANCE=keepstore-ubuntu-2004-tiamat-py3
85     # - env: INSTANCE=shell-ubuntu-2004-tiamat-py3
86     # - env: INSTANCE=workbench-ubuntu-2004-tiamat-py3
87     # - env: INSTANCE=api-ubuntu-1804-tiamat-py3
88     # - env: INSTANCE=keepstore-ubuntu-1804-tiamat-py3
89     # - env: INSTANCE=shell-ubuntu-1804-tiamat-py3
90     # - env: INSTANCE=workbench-ubuntu-1804-tiamat-py3
91     # - env: INSTANCE=api-centos-7-tiamat-py3
92     # - env: INSTANCE=keepstore-centos-7-tiamat-py3
93     # - env: INSTANCE=shell-centos-7-tiamat-py3
94     # - env: INSTANCE=workbench-centos-7-tiamat-py3
95     # - env: INSTANCE=api-debian-10-master-py3
96     # - env: INSTANCE=keepstore-debian-10-master-py3
97     # - env: INSTANCE=shell-debian-10-master-py3
98     # - env: INSTANCE=workbench-debian-10-master-py3
99     # - env: INSTANCE=api-ubuntu-2004-master-py3
100     # - env: INSTANCE=keepstore-ubuntu-2004-master-py3
101     # - env: INSTANCE=shell-ubuntu-2004-master-py3
102     # - env: INSTANCE=workbench-ubuntu-2004-master-py3
103     # - env: INSTANCE=api-ubuntu-1804-master-py3
104     # - env: INSTANCE=keepstore-ubuntu-1804-master-py3
105     # - env: INSTANCE=shell-ubuntu-1804-master-py3
106     - env: INSTANCE=workbench-ubuntu-1804-master-py3
107     - env: INSTANCE=api-debian-10-3001-py3
108     # - env: INSTANCE=keepstore-debian-10-3001-py3
109     # - env: INSTANCE=shell-debian-10-3001-py3
110     # - env: INSTANCE=workbench-debian-10-3001-py3
111     # - env: INSTANCE=api-debian-9-3001-py3
112     # - env: INSTANCE=keepstore-debian-9-3001-py3
113     # - env: INSTANCE=shell-debian-9-3001-py3
114     # - env: INSTANCE=workbench-debian-9-3001-py3
115     # - env: INSTANCE=api-ubuntu-2004-3001-py3
116     # - env: INSTANCE=keepstore-ubuntu-2004-3001-py3
117     # - env: INSTANCE=shell-ubuntu-2004-3001-py3
118     # - env: INSTANCE=workbench-ubuntu-2004-3001-py3
119     # - env: INSTANCE=api-ubuntu-1804-3001-py3
120     # - env: INSTANCE=keepstore-ubuntu-1804-3001-py3
121     # - env: INSTANCE=shell-ubuntu-1804-3001-py3
122     # - env: INSTANCE=workbench-ubuntu-1804-3001-py3
123     # - env: INSTANCE=api-centos-7-3001-py3
124     # - env: INSTANCE=keepstore-centos-7-3001-py3
125     - env: INSTANCE=shell-centos-7-3001-py3
126     # - env: INSTANCE=workbench-centos-7-3001-py3
127     # - env: INSTANCE=api-debian-10-3000-3-py3
128     # - env: INSTANCE=keepstore-debian-10-3000-3-py3
129     # - env: INSTANCE=shell-debian-10-3000-3-py3
130     # - env: INSTANCE=workbench-debian-10-3000-3-py3
131     # - env: INSTANCE=api-debian-9-3000-3-py3
132     # - env: INSTANCE=keepstore-debian-9-3000-3-py3
133     # - env: INSTANCE=shell-debian-9-3000-3-py3
134     # - env: INSTANCE=workbench-debian-9-3000-3-py3
135     # - env: INSTANCE=api-ubuntu-1804-3000-3-py3
136     # - env: INSTANCE=keepstore-ubuntu-1804-3000-3-py3
137     # - env: INSTANCE=shell-ubuntu-1804-3000-3-py3
138     # - env: INSTANCE=workbench-ubuntu-1804-3000-3-py3
139     # - env: INSTANCE=api-centos-7-3000-3-py3
140     - env: INSTANCE=keepstore-centos-7-3000-3-py3
141     # - env: INSTANCE=shell-centos-7-3000-3-py3
142     # - env: INSTANCE=workbench-centos-7-3000-3-py3
143     # - env: INSTANCE=api-ubuntu-1804-3000-3-py2
144     # - env: INSTANCE=keepstore-ubuntu-1804-3000-3-py2
145     # - env: INSTANCE=shell-ubuntu-1804-3000-3-py2
146     # - env: INSTANCE=workbench-ubuntu-1804-3000-3-py2
147
148     ## Define the release stage that runs `semantic-release`
149     - stage: 'release'
150       language: 'node_js'
151       node_js: 'lts/*'
152       env: 'Release'
153       name: 'Run semantic-release inc. file updates to AUTHORS, CHANGELOG & FORMULA'
154       before_install: 'skip'
155       script:
156         # Update `AUTHORS.md`
157         - export MAINTAINER_TOKEN=${GH_TOKEN}
158         - go get github.com/myii/maintainer
159         - maintainer contributor
160
161         # Install all dependencies required for `semantic-release`
162         - npm i -D @semantic-release/changelog@3
163                    @semantic-release/exec@3
164                    @semantic-release/git@7
165       deploy:
166         provider: 'script'
167         # Opt-in to `dpl v2` to complete the Travis build config validation (beta)
168         # * https://docs.travis-ci.com/user/build-config-validation
169         # Deprecated `skip_cleanup` can now be avoided, `cleanup: false` is by default
170         edge: true
171         # Run `semantic-release`
172         script: 'npx semantic-release@15.14'
173
174 # Notification options: `always`, `never` or `change`
175 notifications:
176   webhooks:
177     if: 'repo = saltstack-formulas/arvados-formula'
178     urls:
179       - https://saltstack-formulas.zulipchat.com/api/v1/external/travis?api_key=HsIq3o5QmLxdnVCKF9is0FUIpkpAY79P&stream=CI&topic=saltstack-formulas%2Farvados-formula&ignore_pull_requests=true
180     on_success: always  # default: always
181     on_failure: always  # default: always
182     on_start: always    # default: never
183     on_cancel: always   # default: always
184     on_error: always    # default: always