2019-07-15 00:57:23 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# vim: ft=yaml
|
|
|
|
---
|
2019-10-09 17:09:06 +02:00
|
|
|
## Machine config
|
2019-09-07 04:36:54 +02:00
|
|
|
dist: bionic
|
2019-06-26 01:34:51 +02:00
|
|
|
sudo: required
|
|
|
|
services:
|
|
|
|
- docker
|
|
|
|
|
2019-10-09 17:09:06 +02:00
|
|
|
## Language and cache config
|
|
|
|
language: ruby
|
|
|
|
cache: bundler
|
2019-06-26 01:34:51 +02:00
|
|
|
|
2019-10-09 17:09:06 +02:00
|
|
|
## Script to run for the test stage
|
2019-06-26 01:34:51 +02:00
|
|
|
script:
|
2019-10-09 17:09:06 +02:00
|
|
|
- bin/kitchen verify "${INSTANCE}"
|
2019-06-26 01:34:51 +02:00
|
|
|
|
2019-10-09 17:09:06 +02:00
|
|
|
## Stages and jobs matrix
|
|
|
|
stages:
|
|
|
|
- test
|
|
|
|
- name: release
|
|
|
|
if: branch = master AND type != pull_request
|
2019-06-26 01:34:51 +02:00
|
|
|
jobs:
|
2019-10-09 17:09:06 +02:00
|
|
|
allow_failures:
|
|
|
|
- env: Lint_rubocop
|
|
|
|
fast_finish: true
|
2019-06-26 01:34:51 +02:00
|
|
|
include:
|
2019-10-09 17:09:06 +02:00
|
|
|
## Define the test stage that runs the linters (and testing matrix, if applicable)
|
|
|
|
|
|
|
|
# Run all of the linters in a single job (except `rubocop`)
|
|
|
|
- language: node_js
|
2019-06-26 01:34:51 +02:00
|
|
|
node_js: lts/*
|
2019-10-09 17:09:06 +02:00
|
|
|
env: Lint
|
|
|
|
name: 'Lint: salt-lint, yamllint & commitlint'
|
2019-06-26 01:34:51 +02:00
|
|
|
before_install: skip
|
|
|
|
script:
|
2019-10-09 17:09:06 +02:00
|
|
|
# Install and run `salt-lint`
|
|
|
|
- pip install --user salt-lint
|
|
|
|
- git ls-files | grep '\.sls$\|\.jinja$\|\.j2$\|\.tmpl$'
|
|
|
|
| xargs -I {} salt-lint {}
|
feat(yamllint): include for this repo and apply rules throughout
* Semi-automated using `ssf-formula` (v0.5.0)
* Fix errors shown below:
```bash
php-formula$ $(grep "\- yamllint" .travis.yml | sed -e "s:^\s\+-\s\(.*\):\1:")
./test/integration/default/inspec.yml
1:1 warning missing document start "---" (document-start)
pillar.example
3:1 warning missing document start "---" (document-start)
7:22 warning truthy value should be one of [false, true] (truthy)
8:22 warning truthy value should be one of [false, true] (truthy)
10:22 warning truthy value should be one of [false, true] (truthy)
16:17 warning truthy value should be one of [false, true] (truthy)
41:12 error wrong indentation: expected 10 but found 11 (indentation)
46:27 warning truthy value should be one of [false, true] (truthy)
70:18 warning truthy value should be one of [false, true] (truthy)
74:19 warning truthy value should be one of [false, true] (truthy)
83:22 warning truthy value should be one of [false, true] (truthy)
97:22 warning truthy value should be one of [false, true] (truthy)
107:89 error line too long (93 > 88 characters) (line-length)
118:20 warning truthy value should be one of [false, true] (truthy)
126:14 error wrong indentation: expected 12 but found 13 (indentation)
126:23 warning truthy value should be one of [false, true] (truthy)
151:20 warning truthy value should be one of [false, true] (truthy)
177:19 warning truthy value should be one of [false, true] (truthy)
197:25 warning truthy value should be one of [false, true] (truthy)
```
2019-08-06 16:51:42 +02:00
|
|
|
# Install and run `yamllint`
|
2019-09-10 06:54:05 +02:00
|
|
|
# Need at least `v1.17.0` for the `yaml-files` setting
|
|
|
|
- pip install --user yamllint>=1.17.0
|
|
|
|
- yamllint -s .
|
feat(yamllint): include for this repo and apply rules throughout
* Semi-automated using `ssf-formula` (v0.5.0)
* Fix errors shown below:
```bash
php-formula$ $(grep "\- yamllint" .travis.yml | sed -e "s:^\s\+-\s\(.*\):\1:")
./test/integration/default/inspec.yml
1:1 warning missing document start "---" (document-start)
pillar.example
3:1 warning missing document start "---" (document-start)
7:22 warning truthy value should be one of [false, true] (truthy)
8:22 warning truthy value should be one of [false, true] (truthy)
10:22 warning truthy value should be one of [false, true] (truthy)
16:17 warning truthy value should be one of [false, true] (truthy)
41:12 error wrong indentation: expected 10 but found 11 (indentation)
46:27 warning truthy value should be one of [false, true] (truthy)
70:18 warning truthy value should be one of [false, true] (truthy)
74:19 warning truthy value should be one of [false, true] (truthy)
83:22 warning truthy value should be one of [false, true] (truthy)
97:22 warning truthy value should be one of [false, true] (truthy)
107:89 error line too long (93 > 88 characters) (line-length)
118:20 warning truthy value should be one of [false, true] (truthy)
126:14 error wrong indentation: expected 12 but found 13 (indentation)
126:23 warning truthy value should be one of [false, true] (truthy)
151:20 warning truthy value should be one of [false, true] (truthy)
177:19 warning truthy value should be one of [false, true] (truthy)
197:25 warning truthy value should be one of [false, true] (truthy)
```
2019-08-06 16:51:42 +02:00
|
|
|
# Install and run `commitlint`
|
2019-06-26 01:34:51 +02:00
|
|
|
- npm install @commitlint/config-conventional -D
|
|
|
|
- npm install @commitlint/travis-cli -D
|
|
|
|
- commitlint-travis
|
2019-10-09 17:09:06 +02:00
|
|
|
# Run the `rubocop` linter in a separate job that is allowed to fail
|
|
|
|
# Once these lint errors are fixed, this can be merged into a single job
|
|
|
|
- language: node_js
|
|
|
|
node_js: lts/*
|
|
|
|
env: Lint_rubocop
|
|
|
|
name: 'Lint: rubocop'
|
|
|
|
before_install: skip
|
|
|
|
script:
|
|
|
|
# Install and run `rubocop`
|
|
|
|
- gem install rubocop
|
|
|
|
- rubocop -d
|
|
|
|
|
|
|
|
## Define the rest of the matrix based on Kitchen testing
|
|
|
|
# Make sure the instances listed below match up with
|
|
|
|
# the `platforms` defined in `kitchen.yml`
|
|
|
|
- env: INSTANCE=debian-debian-10-develop-py3
|
|
|
|
# - env: INSTANCE=ubuntu-ubuntu-1804-develop-py3
|
|
|
|
# - env: INSTANCE=redhat-centos-7-develop-py3
|
|
|
|
# - env: INSTANCE=redhat-fedora-30-develop-py3
|
|
|
|
# - env: INSTANCE=suse-opensuse-leap-15-develop-py3
|
|
|
|
# - env: INSTANCE=redhat-amazonlinux-2-develop-py2
|
|
|
|
# - env: INSTANCE=debian-debian-9-2019-2-py3
|
|
|
|
- env: INSTANCE=ubuntu-ubuntu-1804-2019-2-py3
|
|
|
|
# - env: INSTANCE=redhat-centos-7-2019-2-py3
|
|
|
|
# - env: INSTANCE=redhat-fedora-30-2019-2-py3
|
|
|
|
# - env: INSTANCE=suse-opensuse-leap-15-2019-2-py3
|
|
|
|
- env: INSTANCE=redhat-amazonlinux-2-2019-2-py2
|
|
|
|
# - env: INSTANCE=debian-debian-9-2018-3-py2
|
|
|
|
# - env: INSTANCE=ubuntu-ubuntu-1604-2018-3-py2
|
|
|
|
# - env: INSTANCE=redhat-centos-7-2018-3-py2
|
|
|
|
- env: INSTANCE=redhat-fedora-29-2018-3-py2
|
|
|
|
- env: INSTANCE=suse-opensuse-leap-15-2018-3-py2
|
|
|
|
# - env: INSTANCE=redhat-amazonlinux-2-2018-3-py2
|
|
|
|
# - env: INSTANCE=debian-debian-8-2017-7-py2
|
|
|
|
# - env: INSTANCE=ubuntu-ubuntu-1604-2017-7-py2
|
|
|
|
- env: INSTANCE=redhat-centos-6-2017-7-py2
|
|
|
|
# - env: INSTANCE=redhat-fedora-29-2017-7-py2
|
|
|
|
# - env: INSTANCE=suse-opensuse-leap-15-2017-7-py2
|
|
|
|
# - env: INSTANCE=redhat-amazonlinux-2-2017-7-py2
|
|
|
|
|
|
|
|
## Define the release stage that runs `semantic-release`
|
2019-06-26 01:34:51 +02:00
|
|
|
- stage: release
|
|
|
|
language: node_js
|
|
|
|
node_js: lts/*
|
2019-10-09 17:09:06 +02:00
|
|
|
env: Release
|
|
|
|
name: 'Run semantic-release inc. file updates to AUTHORS, CHANGELOG & FORMULA'
|
2019-06-26 01:34:51 +02:00
|
|
|
before_install: skip
|
|
|
|
script:
|
|
|
|
# Update `AUTHORS.md`
|
|
|
|
- export MAINTAINER_TOKEN=${GH_TOKEN}
|
|
|
|
- go get github.com/myii/maintainer
|
|
|
|
- maintainer contributor
|
|
|
|
|
|
|
|
# Install all dependencies required for `semantic-release`
|
|
|
|
- npm install @semantic-release/changelog@3 -D
|
|
|
|
- npm install @semantic-release/exec@3 -D
|
|
|
|
- npm install @semantic-release/git@7 -D
|
|
|
|
deploy:
|
|
|
|
provider: script
|
|
|
|
skip_cleanup: true
|
|
|
|
script:
|
|
|
|
# Run `semantic-release`
|
|
|
|
- npx semantic-release@15
|