|
1 | | -sudo: required |
2 | | -cache: bundler |
3 | | -language: ruby |
| 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' |
4 | 9 |
|
| 10 | +## Language and cache config |
| 11 | +language: 'ruby' |
| 12 | +cache: 'bundler' |
| 13 | + |
| 14 | +## Services config |
5 | 15 | services: |
6 | 16 | - docker |
7 | 17 |
|
8 | | -before_install: |
9 | | - - bundle install |
| 18 | +## Script to run for the test stage |
| 19 | +script: |
| 20 | + - bin/kitchen verify "${INSTANCE}" |
10 | 21 |
|
11 | | -env: |
12 | | - matrix: |
13 | | - - INSTANCE: default-debian-9 |
14 | | -# - INSTANCE: default-ubuntu-1804 |
15 | | -# - INSTANCE: default-fedora-27 |
16 | | -# - INSTANCE: default-centos-7 |
| 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) |
17 | 30 |
|
18 | | -script: |
19 | | - - bundle exec kitchen verify ${INSTANCE} |
| 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=default-debian-10-master-py3 |
| 62 | + - env: INSTANCE=default-ubuntu-2004-master-py3 |
| 63 | + # - env: INSTANCE=default-ubuntu-1804-master-py3 |
| 64 | + # - env: INSTANCE=default-centos-8-master-py3 |
| 65 | + # - env: INSTANCE=default-fedora-32-master-py3 |
| 66 | + # - env: INSTANCE=default-fedora-31-master-py3 |
| 67 | + # - env: INSTANCE=default-opensuse-leap-152-master-py3 |
| 68 | + # - env: INSTANCE=default-amazonlinux-2-master-py3 |
| 69 | + # - env: INSTANCE=default-debian-10-3000-3-py3 |
| 70 | + - env: INSTANCE=default-debian-9-3000-3-py3 |
| 71 | + - env: INSTANCE=default-ubuntu-1804-3000-3-py3 |
| 72 | + # - env: INSTANCE=default-centos-8-3000-3-py3 |
| 73 | + # - env: INSTANCE=default-centos-7-3000-3-py3 |
| 74 | + # - env: INSTANCE=default-fedora-31-3000-3-py3 |
| 75 | + # - env: INSTANCE=default-opensuse-leap-152-3000-3-py3 |
| 76 | + # - env: INSTANCE=default-amazonlinux-2-3000-3-py3 |
| 77 | + # - env: INSTANCE=default-ubuntu-1804-3000-3-py2 |
| 78 | + # - env: INSTANCE=default-ubuntu-1604-3000-3-py2 |
| 79 | + # - env: INSTANCE=default-arch-base-latest-3000-3-py2 |
| 80 | + # - env: INSTANCE=default-debian-10-2019-2-py3 |
| 81 | + # - env: INSTANCE=default-debian-9-2019-2-py3 |
| 82 | + # - env: INSTANCE=default-ubuntu-1804-2019-2-py3 |
| 83 | + - env: INSTANCE=default-ubuntu-1604-2019-2-py3 |
| 84 | + # - env: INSTANCE=default-centos-8-2019-2-py3 |
| 85 | + # - env: INSTANCE=default-centos-7-2019-2-py3 |
| 86 | + # - env: INSTANCE=default-fedora-31-2019-2-py3 |
| 87 | + # - env: INSTANCE=default-opensuse-leap-152-2019-2-py3 |
| 88 | + # - env: INSTANCE=default-amazonlinux-2-2019-2-py3 |
| 89 | + # - env: INSTANCE=default-centos-6-2019-2-py2 |
| 90 | + # - env: INSTANCE=default-amazonlinux-1-2019-2-py2 |
| 91 | + # - env: INSTANCE=default-arch-base-latest-2019-2-py2 |
| 92 | + |
| 93 | + ## Define the release stage that runs `semantic-release` |
| 94 | + - stage: 'release' |
| 95 | + language: 'node_js' |
| 96 | + node_js: 'lts/*' |
| 97 | + env: 'Release' |
| 98 | + name: 'Run semantic-release inc. file updates to AUTHORS, CHANGELOG & FORMULA' |
| 99 | + before_install: 'skip' |
| 100 | + script: |
| 101 | + # Update `AUTHORS.md` |
| 102 | + - export MAINTAINER_TOKEN=${GH_TOKEN} |
| 103 | + - go get github.com/myii/maintainer |
| 104 | + - maintainer contributor |
| 105 | + |
| 106 | + # Install all dependencies required for `semantic-release` |
| 107 | + - npm i -D @semantic-release/changelog@3 |
| 108 | + @semantic-release/exec@3 |
| 109 | + @semantic-release/git@7 |
| 110 | + deploy: |
| 111 | + provider: 'script' |
| 112 | + # Opt-in to `dpl v2` to complete the Travis build config validation (beta) |
| 113 | + # * https://docs.travis-ci.com/user/build-config-validation |
| 114 | + # Deprecated `skip_cleanup` can now be avoided, `cleanup: false` is by default |
| 115 | + edge: true |
| 116 | + # Run `semantic-release` |
| 117 | + script: 'npx semantic-release@15.14' |
20 | 118 |
|
| 119 | +# Notification options: `always`, `never` or `change` |
| 120 | +notifications: |
| 121 | + webhooks: |
| 122 | + if: 'repo = saltstack-formulas/haproxy-formula' |
| 123 | + urls: |
| 124 | + - https://saltstack-formulas.zulipchat.com/api/v1/external/travis?api_key=HsIq3o5QmLxdnVCKF9is0FUIpkpAY79P&stream=CI&topic=saltstack-formulas%2Fhaproxy-formula&ignore_pull_requests=true |
| 125 | + on_success: always # default: always |
| 126 | + on_failure: always # default: always |
| 127 | + on_start: always # default: never |
| 128 | + on_cancel: always # default: always |
| 129 | + on_error: always # default: always |
0 commit comments