forked from saltstack-formulas/openvpn-formula
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci(travis): test based on template-formula and saltstack-formulas#98
- Loading branch information
Showing
15 changed files
with
420 additions
and
89 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
stages: | ||
- test | ||
- commitlint | ||
- 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` | ||
# 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 | ||
env: | ||
matrix: | ||
- INSTANCE: default-debian-9-2019-2-py3 | ||
# - INSTANCE: default-ubuntu-1804-2019-2-py3 | ||
- INSTANCE: default-centos-7-2019-2-py3 | ||
# - INSTANCE: default-fedora-29-2019-2-py3 | ||
- INSTANCE: default-opensuse-leap-15-2019-2-py3 | ||
# - INSTANCE: default-debian-9-2018-3-py2 | ||
- INSTANCE: default-ubuntu-1604-2018-3-py2 | ||
# - INSTANCE: default-centos-7-2018-3-py2 | ||
- INSTANCE: default-fedora-29-2018-3-py2 | ||
# TODO: Use this when fixed instead of `opensuse-leap-42` | ||
# Ref: https://github.com/netmanagers/salt-image-builder/issues/2 | ||
# - INSTANCE: default-opensuse-leap-15-2018-3-py2 | ||
# - INSTANCE: default-opensuse-leap-42-2018-3-py2 | ||
# - INSTANCE: default-debian-8-2017-7-py2 | ||
# - INSTANCE: default-ubuntu-1604-2017-7-py2 | ||
# TODO: Enable after improving the formula to work with other than `systemd` | ||
- INSTANCE: default-centos-6-2017-7-py2 | ||
# - INSTANCE: default-fedora-28-2017-7-py2 | ||
# - INSTANCE: default-opensuse-leap-42-2017-7-py2 | ||
|
||
script: | ||
- bundle exec kitchen verify ${INSTANCE} | ||
|
||
jobs: | ||
include: | ||
# Define the commitlint stage | ||
- stage: commitlint | ||
language: node_js | ||
node_js: lts/* | ||
before_install: skip | ||
script: | ||
- npm install @commitlint/config-conventional -D | ||
- npm install @commitlint/travis-cli -D | ||
- commitlint-travis | ||
# Define the release stage that runs semantic-release | ||
- 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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
source "https://rubygems.org" | ||
|
||
gem 'kitchen-docker', '>= 2.9' | ||
gem 'kitchen-salt', '>= 0.6.0' | ||
gem 'kitchen-inspec', '>= 1.1' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
module.exports = { | ||
extends: ['@commitlint/config-conventional'], | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,108 @@ | ||
# -*- coding: utf-8 -*- | ||
# vim: ft=yaml | ||
--- | ||
# For help on this file's format, see https://kitchen.ci/ | ||
driver: | ||
name: docker | ||
use_sudo: false | ||
privileged: true | ||
run_command: /lib/systemd/systemd | ||
|
||
# Make sure the platforms listed below match up with | ||
# the `env.matrix` instances defined in `.travis.yml` | ||
platforms: | ||
## SALT 2019.2 | ||
- name: debian-9-2019-2-py3 | ||
driver: | ||
image: netmanagers/salt-2019.2-py3:debian-9 | ||
- name: ubuntu-1804-2019-2-py3 | ||
driver: | ||
image: netmanagers/salt-2019.2-py3:ubuntu-18.04 | ||
- name: centos-7-2019-2-py3 | ||
driver: | ||
image: netmanagers/salt-2019.2-py3:centos-7 | ||
- name: fedora-29-2019-2-py3 | ||
driver: | ||
image: netmanagers/salt-2019.2-py3:fedora-29 | ||
- name: opensuse-leap-15-2019-2-py3 | ||
driver: | ||
image: netmanagers/salt-2019.2-py3:opensuse-leap-15 | ||
run_command: /usr/lib/systemd/systemd | ||
|
||
## SALT 2018.3 | ||
- name: debian-9-2018-3-py2 | ||
driver: | ||
image: netmanagers/salt-2018.3-py2:debian-9 | ||
- name: ubuntu-1604-2018-3-py2 | ||
driver: | ||
image: netmanagers/salt-2018.3-py2:ubuntu-16.04 | ||
- name: centos-7-2018-3-py2 | ||
driver: | ||
image: netmanagers/salt-2018.3-py2:centos-7 | ||
- name: fedora-29-2018-3-py2 | ||
driver: | ||
image: netmanagers/salt-2018.3-py2:fedora-29 | ||
# TODO: Use this when fixed instead of `opensuse-leap-42` | ||
# Ref: https://github.com/netmanagers/salt-image-builder/issues/2 | ||
# - name: opensuse-leap-15-2018-3-py2 | ||
# driver: | ||
# image: netmanagers/salt-2018.3-py2:opensuse-leap-15 | ||
# run_command: /usr/lib/systemd/systemd | ||
- name: opensuse-leap-42-2018-3-py2 | ||
driver: | ||
image: netmanagers/salt-2018.3-py2:opensuse-leap-42 | ||
run_command: /usr/lib/systemd/systemd | ||
|
||
## SALT 2017.7 | ||
- name: debian-8-2017-7-py2 | ||
driver: | ||
image: netmanagers/salt-2017.7-py2:debian-8 | ||
- name: ubuntu-1604-2017-7-py2 | ||
driver: | ||
image: netmanagers/salt-2017.7-py2:ubuntu-16.04 | ||
# TODO: Modify the formula to work for non-`systemd` platforms | ||
- name: centos-6-2017-7-py2 | ||
driver: | ||
image: netmanagers/salt-2017.7-py2:centos-6 | ||
run_command: /sbin/init | ||
- name: fedora-28-2017-7-py2 | ||
driver: | ||
image: netmanagers/salt-2017.7-py2:fedora-28 | ||
- name: opensuse-leap-42-2017-7-py2 | ||
driver: | ||
image: netmanagers/salt-2017.7-py2:opensuse-leap-42 | ||
run_command: /usr/lib/systemd/systemd | ||
|
||
provisioner: | ||
name: salt_solo | ||
log_level: info | ||
salt_install: none | ||
require_chef: false | ||
formula: openvpn | ||
salt_copy_filter: | ||
- .kitchen | ||
- .git | ||
state_top: | ||
base: | ||
'*': | ||
- openvpn.config | ||
pillars: | ||
top.sls: | ||
base: | ||
'*': | ||
- openvpn | ||
pillars_from_files: | ||
openvpn.sls: test/config/pillars.sls | ||
|
||
verifier: | ||
# https://www.inspec.io/ | ||
name: inspec | ||
sudo: true | ||
# cli, documentation, html, progress, json, json-min, json-rspec, junit | ||
reporter: | ||
- cli | ||
inspec_tests: | ||
- path: test/integration/default | ||
|
||
suites: | ||
- name: default |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
// No release is triggered for the types commented out below. | ||
// Commits using these types will be incorporated into the next release. | ||
// | ||
// NOTE: Any changes here must be reflected in `CONTRIBUTING.md`. | ||
module.exports = [ | ||
{breaking: true, release: 'major'}, | ||
// {type: 'build', release: 'patch'}, | ||
// {type: 'chore', release: 'patch'}, | ||
// {type: 'ci', release: 'patch'}, | ||
{type: 'docs', release: 'patch'}, | ||
{type: 'feat', release: 'minor'}, | ||
{type: 'fix', release: 'patch'}, | ||
{type: 'perf', release: 'patch'}, | ||
{type: 'refactor', release: 'patch'}, | ||
{type: 'revert', release: 'patch'}, | ||
{type: 'style', release: 'patch'}, | ||
{type: 'test', release: 'patch'}, | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,106 @@ | ||
module.exports = { | ||
branch: 'master', | ||
plugins: [ | ||
['@semantic-release/commit-analyzer', { | ||
preset: 'angular', | ||
releaseRules: './release-rules.js', | ||
}], | ||
'@semantic-release/release-notes-generator', | ||
['@semantic-release/changelog', { | ||
changelogFile: 'CHANGELOG.md', | ||
changelogTitle: '# Changelog', | ||
}], | ||
['@semantic-release/exec', { | ||
prepareCmd: 'sh ./pre-commit_semantic-release.sh ${nextRelease.version}', | ||
}], | ||
['@semantic-release/git', { | ||
assets: ['*.md', 'docs/*.rst', 'FORMULA'], | ||
}], | ||
'@semantic-release/github', | ||
], | ||
generateNotes: { | ||
preset: 'angular', | ||
writerOpts: { | ||
// Required due to upstream bug preventing all types being displayed. | ||
// Bug: https://github.com/conventional-changelog/conventional-changelog/issues/317 | ||
// Fix: https://github.com/conventional-changelog/conventional-changelog/pull/410 | ||
transform: (commit, context) => { | ||
const issues = [] | ||
|
||
commit.notes.forEach(note => { | ||
note.title = `BREAKING CHANGES` | ||
}) | ||
|
||
// NOTE: Any changes here must be reflected in `CONTRIBUTING.md`. | ||
if (commit.type === `feat`) { | ||
commit.type = `Features` | ||
} else if (commit.type === `fix`) { | ||
commit.type = `Bug Fixes` | ||
} else if (commit.type === `perf`) { | ||
commit.type = `Performance Improvements` | ||
} else if (commit.type === `revert`) { | ||
commit.type = `Reverts` | ||
} else if (commit.type === `docs`) { | ||
commit.type = `Documentation` | ||
} else if (commit.type === `style`) { | ||
commit.type = `Styles` | ||
} else if (commit.type === `refactor`) { | ||
commit.type = `Code Refactoring` | ||
} else if (commit.type === `test`) { | ||
commit.type = `Tests` | ||
} else if (commit.type === `build`) { | ||
commit.type = `Build System` | ||
// } else if (commit.type === `chore`) { | ||
// commit.type = `Maintenance` | ||
} else if (commit.type === `ci`) { | ||
commit.type = `Continuous Integration` | ||
} else { | ||
return | ||
} | ||
|
||
if (commit.scope === `*`) { | ||
commit.scope = `` | ||
} | ||
|
||
if (typeof commit.hash === `string`) { | ||
commit.hash = commit.hash.substring(0, 7) | ||
} | ||
|
||
if (typeof commit.subject === `string`) { | ||
let url = context.repository | ||
? `${context.host}/${context.owner}/${context.repository}` | ||
: context.repoUrl | ||
if (url) { | ||
url = `${url}/issues/` | ||
// Issue URLs. | ||
commit.subject = commit.subject.replace(/#([0-9]+)/g, (_, issue) => { | ||
issues.push(issue) | ||
return `[#${issue}](${url}${issue})` | ||
}) | ||
} | ||
if (context.host) { | ||
// User URLs. | ||
commit.subject = commit.subject.replace(/\B@([a-z0-9](?:-?[a-z0-9/]){0,38})/g, (_, username) => { | ||
if (username.includes('/')) { | ||
return `@${username}` | ||
} | ||
|
||
return `[@${username}](${context.host}/${username})` | ||
}) | ||
} | ||
} | ||
|
||
// remove references that already appear in the subject | ||
commit.references = commit.references.filter(reference => { | ||
if (issues.indexOf(reference.issue) === -1) { | ||
return true | ||
} | ||
|
||
return false | ||
}) | ||
|
||
return commit | ||
}, | ||
}, | ||
}, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.