2019-07-30 08:40:33 +01:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# vim: ft=yaml
|
|
|
|
---
|
2019-10-07 21:31:57 +01:00
|
|
|
## Machine config
|
2019-09-06 19:21:49 +01:00
|
|
|
dist: bionic
|
2019-02-17 20:55:55 -03:00
|
|
|
sudo: required
|
|
|
|
services:
|
|
|
|
- docker
|
|
|
|
|
2019-10-07 21:31:57 +01:00
|
|
|
## Language and cache config
|
|
|
|
language: ruby
|
|
|
|
cache: bundler
|
2019-02-17 20:55:55 -03:00
|
|
|
|
2019-10-07 21:31:57 +01:00
|
|
|
## Script to run for the test stage
|
2019-02-17 20:55:55 -03:00
|
|
|
script:
|
2019-10-08 16:43:30 +01:00
|
|
|
- bin/kitchen verify "${INSTANCE}"
|
2019-02-17 20:55:55 -03:00
|
|
|
|
2019-10-07 21:31:57 +01:00
|
|
|
## Stages and jobs matrix
|
|
|
|
stages:
|
|
|
|
- test
|
|
|
|
- name: release
|
|
|
|
if: branch = master AND type != pull_request
|
2019-02-20 18:17:16 +00:00
|
|
|
jobs:
|
|
|
|
include:
|
2019-10-07 21:31:57 +01:00
|
|
|
## Define the test stage that runs the linters (and testing matrix, if applicable)
|
|
|
|
|
|
|
|
# Run all of the linters in a single job
|
|
|
|
- language: node_js
|
2019-02-21 08:18:40 +00:00
|
|
|
node_js: lts/*
|
2019-10-08 20:08:19 +01:00
|
|
|
env: Lint
|
|
|
|
name: 'Lint: salt-lint, yamllint, rubocop & commitlint'
|
2019-02-21 08:18:40 +00:00
|
|
|
before_install: skip
|
|
|
|
script:
|
2019-10-07 23:02:21 +01:00
|
|
|
# Install and run `salt-lint`
|
|
|
|
- pip install --user salt-lint
|
2019-10-30 04:49:10 +00:00
|
|
|
- git ls-files | grep '\.sls$\|\.jinja$\|\.j2$\|\.tmpl$\|\.tst$'
|
2019-11-02 08:39:33 +00:00
|
|
|
| xargs salt-lint
|
2019-08-07 00:00:54 +01:00
|
|
|
# Install and run `yamllint`
|
2019-09-10 05:55:24 +01:00
|
|
|
# Need at least `v1.17.0` for the `yaml-files` setting
|
|
|
|
- pip install --user yamllint>=1.17.0
|
|
|
|
- yamllint -s .
|
2019-10-07 23:18:11 +01:00
|
|
|
# Install and run `rubocop`
|
|
|
|
- gem install rubocop
|
|
|
|
- rubocop -d
|
2019-08-07 00:00:54 +01:00
|
|
|
# Install and run `commitlint`
|
2019-10-31 10:31:33 +00:00
|
|
|
- npm i -D @commitlint/config-conventional
|
|
|
|
@commitlint/travis-cli
|
2019-02-21 08:18:40 +00:00
|
|
|
- commitlint-travis
|
2019-10-07 21:31:57 +01:00
|
|
|
|
|
|
|
## 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`
|
|
|
|
# NOTE: Please try to select up to six instances that add some meaningful
|
|
|
|
# testing of the formula's behaviour. If possible, try to refrain from
|
|
|
|
# the classical "chosing all the instances because I want to test on
|
|
|
|
# another/all distro/s" trap: it will just add time to the testing (see
|
|
|
|
# the discussion on #121). As an example, the set chosen below covers
|
|
|
|
# the most used distros families, systemd and non-systemd and the latest
|
|
|
|
# three supported Saltstack versions with python2 and 3.
|
|
|
|
# As for `kitchen.yml`, that should still contain all of the platforms,
|
|
|
|
# to allow for comprehensive local testing
|
|
|
|
# Ref: https://github.com/saltstack-formulas/template-formula/issues/118
|
|
|
|
# Ref: https://github.com/saltstack-formulas/template-formula/issues/121
|
2019-10-24 18:11:56 +01:00
|
|
|
- env: INSTANCE=default-debian-10-master-py3
|
2019-10-30 04:49:10 +00:00
|
|
|
# - env: INSTANCE=default-ubuntu-1804-master-py3
|
|
|
|
# - env: INSTANCE=default-centos-8-master-py3
|
|
|
|
# - env: INSTANCE=default-fedora-31-master-py3
|
|
|
|
# - env: INSTANCE=default-opensuse-leap-151-master-py3
|
|
|
|
# - env: INSTANCE=default-amazonlinux-2-master-py2
|
|
|
|
# - env: INSTANCE=default-arch-base-latest-master-py2
|
|
|
|
# - env: INSTANCE=default-debian-10-2019-2-py3
|
2019-10-07 21:31:57 +01:00
|
|
|
# - env: INSTANCE=default-debian-9-2019-2-py3
|
|
|
|
- env: INSTANCE=default-ubuntu-1804-2019-2-py3
|
2019-10-30 04:49:10 +00:00
|
|
|
# - env: INSTANCE=default-centos-8-2019-2-py3
|
|
|
|
# - env: INSTANCE=default-fedora-31-2019-2-py3
|
|
|
|
# - env: INSTANCE=default-opensuse-leap-151-2019-2-py3
|
|
|
|
# - env: INSTANCE=default-centos-7-2019-2-py2
|
2019-10-07 21:31:57 +01:00
|
|
|
- env: INSTANCE=default-amazonlinux-2-2019-2-py2
|
|
|
|
- env: INSTANCE=default-arch-base-latest-2019-2-py2
|
2019-10-30 04:49:10 +00:00
|
|
|
- env: INSTANCE=default-fedora-30-2018-3-py3
|
2019-10-07 21:31:57 +01:00
|
|
|
# - env: INSTANCE=default-debian-9-2018-3-py2
|
|
|
|
# - env: INSTANCE=default-ubuntu-1604-2018-3-py2
|
|
|
|
# - env: INSTANCE=default-centos-7-2018-3-py2
|
2019-10-30 04:49:10 +00:00
|
|
|
- env: INSTANCE=default-opensuse-leap-151-2018-3-py2
|
2019-10-07 21:31:57 +01:00
|
|
|
# - env: INSTANCE=default-amazonlinux-2-2018-3-py2
|
|
|
|
# - env: INSTANCE=default-arch-base-latest-2018-3-py2
|
|
|
|
# - env: INSTANCE=default-debian-8-2017-7-py2
|
|
|
|
# - env: INSTANCE=default-ubuntu-1604-2017-7-py2
|
|
|
|
- env: INSTANCE=centos6-centos-6-2017-7-py2
|
2019-10-30 04:49:10 +00:00
|
|
|
# - env: INSTANCE=default-fedora-30-2017-7-py2
|
|
|
|
# - env: INSTANCE=default-opensuse-leap-151-2017-7-py2
|
2019-10-07 21:31:57 +01:00
|
|
|
# - env: INSTANCE=default-amazonlinux-2-2017-7-py2
|
|
|
|
# - env: INSTANCE=default-arch-base-latest-2017-7-py2
|
|
|
|
|
|
|
|
## Define the release stage that runs `semantic-release`
|
2019-02-20 18:17:16 +00:00
|
|
|
- stage: release
|
|
|
|
language: node_js
|
|
|
|
node_js: lts/*
|
2019-10-08 20:08:19 +01:00
|
|
|
env: Release
|
|
|
|
name: 'Run semantic-release inc. file updates to AUTHORS, CHANGELOG & FORMULA'
|
2019-02-20 18:17:16 +00:00
|
|
|
before_install: skip
|
|
|
|
script:
|
2019-02-22 02:58:48 +00:00
|
|
|
# Update `AUTHORS.md`
|
|
|
|
- export MAINTAINER_TOKEN=${GH_TOKEN}
|
|
|
|
- go get github.com/myii/maintainer
|
|
|
|
- maintainer contributor
|
|
|
|
|
|
|
|
# Install all dependencies required for `semantic-release`
|
2019-10-31 10:31:33 +00:00
|
|
|
- npm i -D @semantic-release/changelog@3
|
|
|
|
@semantic-release/exec@3
|
|
|
|
@semantic-release/git@7
|
2019-02-20 18:17:16 +00:00
|
|
|
deploy:
|
|
|
|
provider: script
|
|
|
|
skip_cleanup: true
|
|
|
|
script:
|
2019-02-22 02:58:48 +00:00
|
|
|
# Run `semantic-release`
|
2019-02-20 18:17:16 +00:00
|
|
|
- npx semantic-release@15
|