|
| 1 | +# -*- coding: utf-8 -*- |
| 2 | +# vim: ft=yaml |
| 3 | +--- |
| 4 | +## Machine config |
| 5 | +dist: bionic |
1 | 6 | sudo: required
|
2 |
| -language: python |
3 |
| -services: |
| 7 | +services: |
4 | 8 | - docker
|
5 | 9 |
|
6 |
| -before_install: |
7 |
| - - bundle install |
8 |
| - |
9 |
| -env: |
10 |
| - matrix: |
11 |
| - - INSTANCE: default-centos-7 |
12 |
| - - INSTANCE: default-ubuntu-1604 |
13 |
| - - INSTANCE: default-debian-9 |
| 10 | +## Language and cache config |
| 11 | +language: ruby |
| 12 | +cache: bundler |
14 | 13 |
|
| 14 | +## Script to run for the test stage |
15 | 15 | script:
|
16 |
| - - bundle exec kitchen verify ${INSTANCE} |
| 16 | + - bin/kitchen verify "${INSTANCE}" |
| 17 | + |
| 18 | +## Stages and jobs matrix |
| 19 | +stages: |
| 20 | + - test |
| 21 | + - name: release |
| 22 | + if: branch = master AND type != pull_request |
| 23 | +jobs: |
| 24 | + include: |
| 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 |
| 29 | + node_js: lts/* |
| 30 | + env: Lint |
| 31 | + name: 'Lint: salt-lint, yamllint, rubocop & commitlint' |
| 32 | + before_install: skip |
| 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 {} |
| 38 | + # Install and run `yamllint` |
| 39 | + # Need at least `v1.17.0` for the `yaml-files` setting |
| 40 | + - pip install --user yamllint>=1.17.0 |
| 41 | + - yamllint -s . |
| 42 | + # Install and run `rubocop` |
| 43 | + - gem install rubocop |
| 44 | + - rubocop -d |
| 45 | + # Install and run `commitlint` |
| 46 | + - npm install @commitlint/config-conventional -D |
| 47 | + - npm install @commitlint/travis-cli -D |
| 48 | + - commitlint-travis |
| 49 | + |
| 50 | + ## Define the rest of the matrix based on Kitchen testing |
| 51 | + # Make sure the instances listed below match up with |
| 52 | + # the `platforms` defined in `kitchen.yml` |
| 53 | + - env: INSTANCE=default-debian-10-develop-py3 |
| 54 | + # - env: INSTANCE=default-ubuntu-1804-develop-py3 |
| 55 | + # - env: INSTANCE=default-centos-7-develop-py3 |
| 56 | + # - env: INSTANCE=default-fedora-30-develop-py3 |
| 57 | + # - env: INSTANCE=default-opensuse-leap-15-develop-py3 |
| 58 | + # - env: INSTANCE=default-amazonlinux-2-develop-py2 |
| 59 | + # - env: INSTANCE=default-arch-base-latest-develop-py2 |
| 60 | + # - env: INSTANCE=default-debian-9-2019-2-py3 |
| 61 | + - env: INSTANCE=default-ubuntu-1804-2019-2-py3 |
| 62 | + # - env: INSTANCE=default-centos-7-2019-2-py3 |
| 63 | + # - env: INSTANCE=default-fedora-30-2019-2-py3 |
| 64 | + # - env: INSTANCE=default-opensuse-leap-15-2019-2-py3 |
| 65 | + - env: INSTANCE=default-amazonlinux-2-2019-2-py2 |
| 66 | + # - env: INSTANCE=default-arch-base-latest-2019-2-py2 |
| 67 | + # - env: INSTANCE=default-debian-9-2018-3-py2 |
| 68 | + # - env: INSTANCE=default-ubuntu-1604-2018-3-py2 |
| 69 | + # - env: INSTANCE=default-centos-7-2018-3-py2 |
| 70 | + - env: INSTANCE=default-fedora-29-2018-3-py2 |
| 71 | + # - env: INSTANCE=default-opensuse-leap-15-2018-3-py2 |
| 72 | + # - env: INSTANCE=default-amazonlinux-2-2018-3-py2 |
| 73 | + # - env: INSTANCE=default-arch-base-latest-2018-3-py2 |
| 74 | + # - env: INSTANCE=default-debian-8-2017-7-py2 |
| 75 | + # - env: INSTANCE=default-ubuntu-1604-2017-7-py2 |
| 76 | + - env: INSTANCE=default-centos-6-2017-7-py2 |
| 77 | + # - env: INSTANCE=default-fedora-29-2017-7-py2 |
| 78 | + # - env: INSTANCE=default-opensuse-leap-15-2017-7-py2 |
| 79 | + # - env: INSTANCE=default-amazonlinux-2-2017-7-py2 |
| 80 | + # - env: INSTANCE=default-arch-base-latest-2017-7-py2 |
| 81 | + |
| 82 | + ## Define the release stage that runs `semantic-release` |
| 83 | + - stage: release |
| 84 | + language: node_js |
| 85 | + node_js: lts/* |
| 86 | + env: Release |
| 87 | + name: 'Run semantic-release inc. file updates to AUTHORS, CHANGELOG & FORMULA' |
| 88 | + before_install: skip |
| 89 | + script: |
| 90 | + # Update `AUTHORS.md` |
| 91 | + - export MAINTAINER_TOKEN=${GH_TOKEN} |
| 92 | + - go get github.com/myii/maintainer |
| 93 | + - maintainer contributor |
| 94 | + |
| 95 | + # Install all dependencies required for `semantic-release` |
| 96 | + - npm install @semantic-release/changelog@3 -D |
| 97 | + - npm install @semantic-release/exec@3 -D |
| 98 | + - npm install @semantic-release/git@7 -D |
| 99 | + deploy: |
| 100 | + provider: script |
| 101 | + skip_cleanup: true |
| 102 | + script: |
| 103 | + # Run `semantic-release` |
| 104 | + - npx semantic-release@15 |
0 commit comments