2019-07-15 00:57:23 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# vim: ft=yaml
|
|
|
|
---
|
2019-09-07 04:36:54 +02:00
|
|
|
dist: bionic
|
2019-06-26 01:34:51 +02:00
|
|
|
stages:
|
|
|
|
- test
|
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
|
|
|
- lint
|
2019-06-26 01:34:51 +02:00
|
|
|
- name: release
|
|
|
|
if: branch = master AND type != pull_request
|
|
|
|
|
|
|
|
sudo: required
|
|
|
|
cache: bundler
|
|
|
|
language: ruby
|
|
|
|
|
|
|
|
services:
|
|
|
|
- docker
|
|
|
|
|
|
|
|
# Make sure the instances listed below match up with
|
|
|
|
# the `platforms` defined in `kitchen.yml`
|
|
|
|
env:
|
|
|
|
matrix:
|
2019-09-05 22:11:35 +02:00
|
|
|
- INSTANCE: debian-debian-10-develop-py3
|
2019-09-04 20:26:30 +02:00
|
|
|
# - INSTANCE: ubuntu-ubuntu-1804-develop-py3
|
2019-07-15 00:57:23 +02:00
|
|
|
# - INSTANCE: redhat-centos-7-develop-py3
|
2019-09-05 22:11:35 +02:00
|
|
|
# - INSTANCE: redhat-fedora-30-develop-py3
|
2019-07-15 00:57:23 +02:00
|
|
|
# - INSTANCE: suse-opensuse-leap-15-develop-py3
|
2019-09-05 22:11:35 +02:00
|
|
|
# - INSTANCE: redhat-amazonlinux-2-develop-py2
|
2019-07-15 00:57:23 +02:00
|
|
|
# - INSTANCE: debian-debian-9-2019-2-py3
|
2019-09-04 20:26:30 +02:00
|
|
|
- INSTANCE: ubuntu-ubuntu-1804-2019-2-py3
|
2019-09-05 22:11:35 +02:00
|
|
|
# - INSTANCE: redhat-centos-7-2019-2-py3
|
|
|
|
# - INSTANCE: redhat-fedora-30-2019-2-py3
|
2019-07-15 00:57:23 +02:00
|
|
|
# - INSTANCE: suse-opensuse-leap-15-2019-2-py3
|
2019-09-05 22:11:35 +02:00
|
|
|
- INSTANCE: redhat-amazonlinux-2-2019-2-py2
|
2019-07-15 00:57:23 +02:00
|
|
|
# - INSTANCE: debian-debian-9-2018-3-py2
|
2019-09-04 20:26:30 +02:00
|
|
|
# - INSTANCE: ubuntu-ubuntu-1604-2018-3-py2
|
2019-07-15 00:57:23 +02:00
|
|
|
# - INSTANCE: redhat-centos-7-2018-3-py2
|
|
|
|
- INSTANCE: redhat-fedora-29-2018-3-py2
|
2019-09-05 22:11:35 +02:00
|
|
|
- INSTANCE: suse-opensuse-leap-15-2018-3-py2
|
|
|
|
# - INSTANCE: redhat-amazonlinux-2-2018-3-py2
|
2019-07-15 00:57:23 +02:00
|
|
|
# - INSTANCE: debian-debian-8-2017-7-py2
|
2019-09-04 20:26:30 +02:00
|
|
|
# - INSTANCE: ubuntu-ubuntu-1604-2017-7-py2
|
2019-07-15 00:57:23 +02:00
|
|
|
- INSTANCE: redhat-centos-6-2017-7-py2
|
2019-09-05 22:11:35 +02:00
|
|
|
# - INSTANCE: redhat-fedora-29-2017-7-py2
|
|
|
|
# - INSTANCE: suse-opensuse-leap-15-2017-7-py2
|
|
|
|
# - INSTANCE: redhat-amazonlinux-2-2017-7-py2
|
2019-06-26 01:34:51 +02:00
|
|
|
|
|
|
|
script:
|
2019-07-15 00:57:23 +02:00
|
|
|
- bin/kitchen verify ${INSTANCE}
|
2019-06-26 01:34:51 +02:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
include:
|
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
|
|
|
# Define the `lint` stage (runs `yamllint` and `commitlint`)
|
|
|
|
- stage: lint
|
2019-06-26 01:34:51 +02:00
|
|
|
language: node_js
|
|
|
|
node_js: lts/*
|
|
|
|
before_install: skip
|
|
|
|
script:
|
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`
|
|
|
|
- pip install --user yamllint
|
|
|
|
# yamllint disable-line rule:line-length
|
2019-09-04 20:26:30 +02:00
|
|
|
- yamllint -s . .yamllint pillar.example test/salt/pillar/debian.sls test/salt/pillar/ubuntu.sls test/salt/pillar/redhat.sls test/salt/pillar/suse.sls
|
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
|
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
|
|
|
# Define the release stage that runs `semantic-release`
|
2019-06-26 01:34:51 +02:00
|
|
|
- stage: release
|
|
|
|
language: node_js
|
|
|
|
node_js: lts/*
|
|
|
|
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
|