|
1 | 1 | # -*- coding: utf-8 -*- |
2 | 2 | # vim: ft=yaml |
3 | 3 | --- |
| 4 | +## Machine config |
4 | 5 | dist: bionic |
5 | | -stages: |
6 | | - - test |
7 | | - - lint |
8 | | - - name: release |
9 | | - if: branch = master AND type != pull_request |
10 | | - |
11 | 6 | sudo: required |
12 | | -cache: bundler |
13 | | -language: ruby |
14 | | - |
15 | 7 | services: |
16 | 8 | - docker |
17 | 9 |
|
18 | | -# Make sure the instances listed below match up with |
19 | | -# the `platforms` defined in `kitchen.yml` |
20 | | -env: |
21 | | - matrix: |
22 | | - - INSTANCE: default-debian-10-develop-py3 |
23 | | - # - INSTANCE: default-ubuntu-1804-develop-py3 |
24 | | - # - INSTANCE: default-centos-7-develop-py3 |
25 | | - # - INSTANCE: default-fedora-30-develop-py3 |
26 | | - # - INSTANCE: default-opensuse-leap-15-develop-py3 |
27 | | - # - INSTANCE: default-amazonlinux-2-develop-py2 |
28 | | - # - INSTANCE: default-arch-base-latest-develop-py2 |
29 | | - # - INSTANCE: default-debian-9-2019-2-py3 |
30 | | - - INSTANCE: default-ubuntu-1804-2019-2-py3 |
31 | | - # - INSTANCE: default-centos-7-2019-2-py3 |
32 | | - # - INSTANCE: default-fedora-30-2019-2-py3 |
33 | | - # - INSTANCE: default-opensuse-leap-15-2019-2-py3 |
34 | | - - INSTANCE: default-amazonlinux-2-2019-2-py2 |
35 | | - # - INSTANCE: default-arch-base-latest-2019-2-py2 |
36 | | - # - INSTANCE: default-debian-9-2018-3-py2 |
37 | | - # - INSTANCE: default-ubuntu-1604-2018-3-py2 |
38 | | - # - INSTANCE: default-centos-7-2018-3-py2 |
39 | | - - INSTANCE: default-fedora-29-2018-3-py2 |
40 | | - - INSTANCE: default-opensuse-leap-15-2018-3-py2 |
41 | | - # - INSTANCE: default-amazonlinux-2-2018-3-py2 |
42 | | - # - INSTANCE: default-arch-base-latest-2018-3-py2 |
43 | | - # - INSTANCE: default-debian-8-2017-7-py2 |
44 | | - # - INSTANCE: default-ubuntu-1604-2017-7-py2 |
45 | | - - INSTANCE: default-centos-6-2017-7-py2 |
46 | | - # - INSTANCE: default-fedora-29-2017-7-py2 |
47 | | - # - INSTANCE: default-opensuse-leap-15-2017-7-py2 |
48 | | - # - INSTANCE: default-amazonlinux-2-2017-7-py2 |
49 | | - # - INSTANCE: default-arch-base-latest-2017-7-py2 |
| 10 | +## Language and cache config |
| 11 | +language: ruby |
| 12 | +cache: bundler |
50 | 13 |
|
| 14 | +## Script to run for the test stage |
51 | 15 | script: |
52 | | - - bin/kitchen verify ${INSTANCE} |
| 16 | + - bin/kitchen verify "${INSTANCE}" |
53 | 17 |
|
| 18 | +## Stages and jobs matrix |
| 19 | +stages: |
| 20 | + - test |
| 21 | + - name: release |
| 22 | + if: branch = master AND type != pull_request |
54 | 23 | jobs: |
55 | 24 | include: |
56 | | - # Define the `lint` stage (runs `yamllint` and `commitlint`) |
57 | | - - stage: lint |
58 | | - language: node_js |
| 25 | + ## Define the test stage that runs the linters (and testing matrix, if applicable) |
| 26 | + |
| 27 | + # Run all of the linters in a single job |
| 28 | + - language: node_js |
59 | 29 | node_js: lts/* |
| 30 | + env: Lint |
| 31 | + name: 'Lint: salt-lint, yamllint, rubocop & commitlint' |
60 | 32 | before_install: skip |
61 | 33 | script: |
| 34 | + # Install and run `salt-lint` |
| 35 | + - pip install --user salt-lint |
| 36 | + - git ls-files | grep '\.sls$\|\.jinja$\|\.j2$\|\.tmpl$' |
| 37 | + | xargs -I {} salt-lint {} |
62 | 38 | # Install and run `yamllint` |
63 | 39 | # Need at least `v1.17.0` for the `yaml-files` setting |
64 | 40 | - pip install --user yamllint>=1.17.0 |
65 | 41 | - yamllint -s . |
| 42 | + # Install and run `rubocop` |
| 43 | + - gem install rubocop |
| 44 | + - rubocop -d |
66 | 45 | # Install and run `commitlint` |
67 | 46 | - npm install @commitlint/config-conventional -D |
68 | 47 | - npm install @commitlint/travis-cli -D |
69 | 48 | - commitlint-travis |
70 | | - # Define the release stage that runs `semantic-release` |
| 49 | + |
| 50 | + ## Define the release stage that runs `semantic-release` |
71 | 51 | - stage: release |
72 | 52 | language: node_js |
73 | 53 | node_js: lts/* |
| 54 | + env: Release |
| 55 | + name: 'Run semantic-release inc. file updates to AUTHORS, CHANGELOG & FORMULA' |
74 | 56 | before_install: skip |
75 | 57 | script: |
76 | 58 | # Update `AUTHORS.md` |
|
0 commit comments