style(libtofs.jinja): use Black-inspired Jinja formatting [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     ## Define the rest of the matrix based on Kitchen testing
59     # Make sure the instances listed below match up with
60     # the `platforms` defined in `kitchen.yml`
61     - env: INSTANCE=api-debian-10-3000-3-py3
62     - env: INSTANCE=workbench-debian-10-3000-3-py3
63     - env: INSTANCE=shell-debian-10-3000-3-py3
64     - env: INSTANCE=keepstore-debian-10-3000-3-py3
65     # - env: INSTANCE=default-ubuntu-1804-3000-3-py3
66     # - env: INSTANCE=default-centos-7-2019-2-py3
67
68     ## Define the release stage that runs `semantic-release`
69     - stage: 'release'
70       language: 'node_js'
71       node_js: 'lts/*'
72       env: 'Release'
73       name: 'Run semantic-release inc. file updates to AUTHORS, CHANGELOG & FORMULA'
74       before_install: 'skip'
75       script:
76         # Update `AUTHORS.md`
77         - export MAINTAINER_TOKEN=${GH_TOKEN}
78         - go get github.com/myii/maintainer
79         - maintainer contributor
80
81         # Install all dependencies required for `semantic-release`
82         - npm i -D @semantic-release/changelog@3
83                    @semantic-release/exec@3
84                    @semantic-release/git@7
85       deploy:
86         provider: 'script'
87         # Opt-in to `dpl v2` to complete the Travis build config validation (beta)
88         # * https://docs.travis-ci.com/user/build-config-validation
89         # Deprecated `skip_cleanup` can now be avoided, `cleanup: false` is by default
90         edge: true
91         # Run `semantic-release`
92         script: 'npx semantic-release@15.14'
93
94 # Notification options: `always`, `never` or `change`
95 notifications:
96   webhooks:
97     if: 'repo = saltstack-formulas/arvados-formula'
98     urls:
99       - https://saltstack-formulas.zulipchat.com/api/v1/external/travis?api_key=HsIq3o5QmLxdnVCKF9is0FUIpkpAY79P&stream=CI&topic=saltstack-formulas%2Farvados-formula&ignore_pull_requests=true
100     on_success: always  # default: always
101     on_failure: always  # default: always
102     on_start: always    # default: never
103     on_cancel: always   # default: always
104     on_error: always    # default: always