mirror of
https://github.com/saltstack-formulas/packages-formula.git
synced 2025-04-07 04:51:41 +00:00
feat(semantic-release): update for this formula
* Updated using https://github.com/myii/ssf-formula/pull/34
This commit is contained in:
parent
edb0d73ffe
commit
1755f76fde
11 changed files with 359 additions and 187 deletions
10
.rubocop.yml
Normal file
10
.rubocop.yml
Normal file
|
@ -0,0 +1,10 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# vim: ft=yaml
|
||||
---
|
||||
# General overrides used across formulas in the org
|
||||
Metrics/LineLength:
|
||||
# Increase from default of `80`
|
||||
# Based on https://github.com/PyCQA/flake8-bugbear#opinionated-warnings (`B950`)
|
||||
Max: 88
|
||||
|
||||
# Any offenses that should be fixed, e.g. collected via. `rubocop --auto-gen-config`
|
14
.salt-lint
Normal file
14
.salt-lint
Normal file
|
@ -0,0 +1,14 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# vim: ft=yaml
|
||||
---
|
||||
exclude_paths: []
|
||||
rules: {}
|
||||
skip_list:
|
||||
# Using `salt-lint` for linting other files as well, such as Jinja macros/templates
|
||||
- 205 # Use ".sls" as a Salt State file extension
|
||||
# Skipping `207` and `208` because `210` is sufficient, at least for the time-being
|
||||
# I.e. Allows 3-digit unquoted codes to still be used, such as `644` and `755`
|
||||
- 207 # File modes should always be encapsulated in quotation marks
|
||||
- 208 # File modes should always contain a leading zero
|
||||
tags: []
|
||||
verbosity: 1
|
164
.travis.yml
164
.travis.yml
|
@ -1,79 +1,101 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# vim: ft=yaml
|
||||
---
|
||||
stages:
|
||||
- test
|
||||
- commitlint
|
||||
- name: release
|
||||
if: branch = master AND type != pull_request
|
||||
## Machine config
|
||||
os: 'linux'
|
||||
arch: 'amd64'
|
||||
dist: 'bionic'
|
||||
version: '~> 1.0'
|
||||
|
||||
sudo: required
|
||||
cache: bundler
|
||||
language: ruby
|
||||
dist: xenial
|
||||
## Language and cache config
|
||||
language: 'ruby'
|
||||
cache: 'bundler'
|
||||
|
||||
## Services config
|
||||
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: debian-debian-10-develop-py3
|
||||
# - INSTANCE: ubuntu-ubuntu-1804-develop-py3
|
||||
# - INSTANCE: centos-centos-7-develop-py3
|
||||
# - INSTANCE: fedora30-fedora-30-develop-py3
|
||||
# - INSTANCE: suse-opensuse-leap-15-develop-py3
|
||||
- INSTANCE: amazonlinux-amazonlinux-2-develop-py2
|
||||
# - INSTANCE: debian-debian-9-2019-2-py3
|
||||
# - INSTANCE: ubuntu-ubuntu-1804-2019-2-py3
|
||||
# - INSTANCE: centos-centos-7-2019-2-py3
|
||||
# - INSTANCE: fedora30-fedora-30-2019-2-py3
|
||||
# - INSTANCE: suse-opensuse-leap-15-2019-2-py3
|
||||
- INSTANCE: amazonlinux-amazonlinux-2-2019-2-py2
|
||||
# - INSTANCE: debian-debian-9-2018-3-py2
|
||||
# - INSTANCE: ubuntu-ubuntu-1604-2018-3-py2
|
||||
# - INSTANCE: centos-centos-7-2018-3-py2
|
||||
# - INSTANCE: fedora29-fedora-29-2018-3-py2
|
||||
# - INSTANCE: suse-opensuse-leap-15-2018-3-py2
|
||||
- INSTANCE: amazonlinux-amazonlinux-2-2018-3-py2
|
||||
# - INSTANCE: debian-debian-8-2017-7-py2
|
||||
# - INSTANCE: ubuntu-ubuntu-1604-2017-7-py2
|
||||
# - INSTANCE: centos-centos-6-2017-7-py2
|
||||
# - INSTANCE: fedora29-fedora-29-2017-7-py2
|
||||
# - INSTANCE: suse-opensuse-leap-15-2017-7-py2
|
||||
- INSTANCE: amazonlinux-amazonlinux-2-2017-7-py2
|
||||
|
||||
## Script to run for the test stage
|
||||
script:
|
||||
- bin/kitchen verify ${INSTANCE}
|
||||
- bin/kitchen verify "${INSTANCE}"
|
||||
|
||||
## Stages and jobs matrix
|
||||
stages:
|
||||
- test
|
||||
- name: 'release'
|
||||
if: 'branch = master AND type != pull_request'
|
||||
jobs:
|
||||
include:
|
||||
# Define the commitlint stage
|
||||
- stage: commitlint
|
||||
language: node_js
|
||||
node_js: lts/*
|
||||
before_install: skip
|
||||
## 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'
|
||||
node_js: 'lts/*'
|
||||
env: 'Lint'
|
||||
name: 'Lint: salt-lint, yamllint, rubocop, shellcheck & commitlint'
|
||||
before_install: 'skip'
|
||||
script:
|
||||
- npm install @commitlint/config-conventional -D
|
||||
- npm install @commitlint/travis-cli -D
|
||||
# Install and run `salt-lint`
|
||||
- pip install --user salt-lint
|
||||
- git ls-files -- '*.sls' '*.jinja' '*.j2' '*.tmpl' '*.tst'
|
||||
| xargs salt-lint
|
||||
# Install and run `yamllint`
|
||||
# Need at least `v1.17.0` for the `yaml-files` setting
|
||||
- pip install --user yamllint>=1.17.0
|
||||
- yamllint -s .
|
||||
# Install and run `rubocop`
|
||||
- gem install rubocop
|
||||
- rubocop -d
|
||||
# Run `shellcheck` (already pre-installed in Travis)
|
||||
- shellcheck --version
|
||||
- git ls-files -- '*.sh' '*.bash' '*.ksh'
|
||||
| xargs shellcheck
|
||||
# Install and run `commitlint`
|
||||
- npm i -D @commitlint/config-conventional
|
||||
@commitlint/travis-cli
|
||||
- commitlint-travis
|
||||
# Define the release stage that runs semantic-release
|
||||
- stage: release
|
||||
language: node_js
|
||||
node_js: lts/*
|
||||
before_install: skip
|
||||
|
||||
## 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-master-py3
|
||||
# - env: INSTANCE=ubuntu-ubuntu-1804-master-py3
|
||||
# - env: INSTANCE=centos-centos-8-master-py3
|
||||
# - env: INSTANCE=fedora-fedora-31-master-py3
|
||||
# - env: INSTANCE=suse-opensuse-leap-151-master-py3
|
||||
# - env: INSTANCE=amazon-amazonlinux-2-master-py2
|
||||
# - env: INSTANCE=arch-arch-base-latest-master-py2
|
||||
# - env: INSTANCE=debian-debian-10-2019-2-py3
|
||||
# - env: INSTANCE=debian-debian-9-2019-2-py3
|
||||
- env: INSTANCE=ubuntu-ubuntu-1804-2019-2-py3
|
||||
# - env: INSTANCE=centos-centos-8-2019-2-py3
|
||||
# - env: INSTANCE=fedora-fedora-31-2019-2-py3
|
||||
- env: INSTANCE=suse-opensuse-leap-151-2019-2-py3
|
||||
# - env: INSTANCE=centos-centos-7-2019-2-py2
|
||||
- env: INSTANCE=amazon-amazonlinux-2-2019-2-py2
|
||||
# - env: INSTANCE=arch-arch-base-latest-2019-2-py2
|
||||
- env: INSTANCE=fedora-fedora-30-2018-3-py3
|
||||
# - env: INSTANCE=debian-debian-9-2018-3-py2
|
||||
# - env: INSTANCE=ubuntu-ubuntu-1604-2018-3-py2
|
||||
- env: INSTANCE=centos-centos-7-2018-3-py2
|
||||
# - env: INSTANCE=suse-opensuse-leap-151-2018-3-py2
|
||||
# - env: INSTANCE=amazon-amazonlinux-2-2018-3-py2
|
||||
# - env: INSTANCE=arch-arch-base-latest-2018-3-py2
|
||||
# - env: INSTANCE=debian-debian-8-2017-7-py2
|
||||
# - env: INSTANCE=ubuntu-ubuntu-1604-2017-7-py2
|
||||
# - env: INSTANCE=centos-centos-6-2017-7-py2
|
||||
# - env: INSTANCE=fedora-fedora-30-2017-7-py2
|
||||
# - env: INSTANCE=suse-opensuse-leap-151-2017-7-py2
|
||||
# - env: INSTANCE=amazon-amazonlinux-2-2017-7-py2
|
||||
- env: INSTANCE=arch-arch-base-latest-2017-7-py2
|
||||
|
||||
## Define the release stage that runs `semantic-release`
|
||||
- stage: 'release'
|
||||
language: 'node_js'
|
||||
node_js: 'lts/*'
|
||||
env: 'Release'
|
||||
name: 'Run semantic-release inc. file updates to AUTHORS, CHANGELOG & FORMULA'
|
||||
before_install: 'skip'
|
||||
script:
|
||||
# Update `AUTHORS.md`
|
||||
- export MAINTAINER_TOKEN=${GH_TOKEN}
|
||||
|
@ -81,12 +103,14 @@ jobs:
|
|||
- 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
|
||||
- npm i -D @semantic-release/changelog@3
|
||||
@semantic-release/exec@3
|
||||
@semantic-release/git@7
|
||||
deploy:
|
||||
provider: script
|
||||
skip_cleanup: true
|
||||
script:
|
||||
# Run `semantic-release`
|
||||
- npx semantic-release@15
|
||||
provider: 'script'
|
||||
# Opt-in to `dpl v2` to complete the Travis build config validation (beta)
|
||||
# * https://docs.travis-ci.com/user/build-config-validation
|
||||
# Deprecated `skip_cleanup` can now be avoided, `cleanup: false` is by default
|
||||
edge: true
|
||||
# Run `semantic-release`
|
||||
script: 'npx semantic-release@15.14'
|
||||
|
|
36
.yamllint
Normal file
36
.yamllint
Normal file
|
@ -0,0 +1,36 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# vim: ft=yaml
|
||||
---
|
||||
# Extend the `default` configuration provided by `yamllint`
|
||||
extends: default
|
||||
|
||||
# Files to ignore completely
|
||||
# 1. All YAML files under directory `node_modules/`, introduced during the Travis run
|
||||
# 2. Any SLS files under directory `test/`, which are actually state files
|
||||
# 3. Any YAML files under directory `.kitchen/`, introduced during local testing
|
||||
ignore: |
|
||||
node_modules/
|
||||
test/**/states/**/*.sls
|
||||
.kitchen/
|
||||
|
||||
yaml-files:
|
||||
# Default settings
|
||||
- '*.yaml'
|
||||
- '*.yml'
|
||||
- .salt-lint
|
||||
- .yamllint
|
||||
# SaltStack Formulas additional settings
|
||||
- '*.example'
|
||||
- test/**/*.sls
|
||||
|
||||
rules:
|
||||
empty-values:
|
||||
forbid-in-block-mappings: true
|
||||
forbid-in-flow-mappings: true
|
||||
line-length:
|
||||
# Increase from default of `80`
|
||||
# Based on https://github.com/PyCQA/flake8-bugbear#opinionated-warnings (`B950`)
|
||||
max: 88
|
||||
octal-values:
|
||||
forbid-implicit-octal: true
|
||||
forbid-explicit-octal: true
|
11
Gemfile
11
Gemfile
|
@ -1,6 +1,11 @@
|
|||
source "https://rubygems.org"
|
||||
# frozen_string_literal: true
|
||||
|
||||
source 'https://rubygems.org'
|
||||
|
||||
gem 'kitchen-docker', '>= 2.9'
|
||||
gem 'kitchen-salt', '>= 0.6.0'
|
||||
gem 'kitchen-inspec', '>= 1.1'
|
||||
|
||||
gem 'kitchen-salt', '>= 0.6.0'
|
||||
# Latest versions of `train` cause failure when running `kitchen verify`
|
||||
# Downgrading to `3.2.0` until this is fixed upstream
|
||||
# https://github.com/inspec/train/pull/544#issuecomment-566055052
|
||||
gem 'train', '3.2.0'
|
||||
|
|
21
bin/kitchen
21
bin/kitchen
|
@ -8,22 +8,25 @@
|
|||
# this file is here to facilitate running it.
|
||||
#
|
||||
|
||||
require "pathname"
|
||||
ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../Gemfile",
|
||||
Pathname.new(__FILE__).realpath)
|
||||
require 'pathname'
|
||||
ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile',
|
||||
Pathname.new(__FILE__).realpath)
|
||||
|
||||
bundle_binstub = File.expand_path("../bundle", __FILE__)
|
||||
bundle_binstub = File.expand_path('bundle', __dir__)
|
||||
|
||||
if File.file?(bundle_binstub)
|
||||
if File.read(bundle_binstub, 300) =~ /This file was generated by Bundler/
|
||||
load(bundle_binstub)
|
||||
else
|
||||
abort("Your `bin/bundle` was not generated by Bundler, so this binstub cannot run.
|
||||
Replace `bin/bundle` by running `bundle binstubs bundler --force`, then run this command again.")
|
||||
abort(
|
||||
'Your `bin/bundle` was not generated by Bundler, '\
|
||||
'so this binstub cannot run. Replace `bin/bundle` by running '\
|
||||
'`bundle binstubs bundler --force`, then run this command again.'
|
||||
)
|
||||
end
|
||||
end
|
||||
|
||||
require "rubygems"
|
||||
require "bundler/setup"
|
||||
require 'rubygems'
|
||||
require 'bundler/setup'
|
||||
|
||||
load Gem.bin_path("test-kitchen", "kitchen")
|
||||
load Gem.bin_path('test-kitchen', 'kitchen')
|
||||
|
|
260
kitchen.yml
260
kitchen.yml
|
@ -11,86 +11,128 @@ driver:
|
|||
# Make sure the platforms listed below match up with
|
||||
# the `env.matrix` instances defined in `.travis.yml`
|
||||
platforms:
|
||||
## SALT `develop`
|
||||
- name: debian-10-develop-py3
|
||||
## SALT `master`
|
||||
- name: debian-10-master-py3
|
||||
driver:
|
||||
image: netmanagers/salt-develop-py3:debian-10
|
||||
image: netmanagers/salt-master-py3:debian-10
|
||||
provision_command:
|
||||
- curl -o bootstrap-salt.sh -L https://bootstrap.saltstack.com
|
||||
- sh bootstrap-salt.sh -XdPbfrq -x python3 git develop
|
||||
- name: ubuntu-1804-develop-py3
|
||||
- sh bootstrap-salt.sh -XdPbfrq -x python3 git master
|
||||
- apt-get install -y snapd
|
||||
- name: ubuntu-1804-master-py3
|
||||
driver:
|
||||
image: netmanagers/salt-develop-py3:ubuntu-18.04
|
||||
image: netmanagers/salt-master-py3:ubuntu-18.04
|
||||
provision_command:
|
||||
- curl -o bootstrap-salt.sh -L https://bootstrap.saltstack.com
|
||||
- sh bootstrap-salt.sh -XdPbfrq -x python3 git develop
|
||||
- name: centos-7-develop-py3
|
||||
- sh bootstrap-salt.sh -XdPbfrq -x python3 git master
|
||||
- name: centos-8-master-py3
|
||||
driver:
|
||||
image: netmanagers/salt-develop-py3:centos-7
|
||||
image: netmanagers/salt-master-py3:centos-8
|
||||
provision_command:
|
||||
- curl -o bootstrap-salt.sh -L https://bootstrap.saltstack.com
|
||||
- sh bootstrap-salt.sh -XdPbfrq -x python3 git develop
|
||||
- name: fedora-30-develop-py3
|
||||
- sh bootstrap-salt.sh -XdPbfrq -x python3 git master
|
||||
- name: fedora-31-master-py3
|
||||
driver:
|
||||
image: netmanagers/salt-develop-py3:fedora-30
|
||||
image: netmanagers/salt-master-py3:fedora-31
|
||||
provision_command:
|
||||
- curl -o bootstrap-salt.sh -L https://bootstrap.saltstack.com
|
||||
- sh bootstrap-salt.sh -XdPbfrq -x python3 git develop
|
||||
- name: opensuse-leap-15-develop-py3
|
||||
- sh bootstrap-salt.sh -XdPbfrq -x python3 git master
|
||||
- name: opensuse-leap-151-master-py3
|
||||
driver:
|
||||
image: netmanagers/salt-develop-py3:opensuse-leap-15
|
||||
image: netmanagers/salt-master-py3:opensuse-leap-15.1
|
||||
provision_command:
|
||||
- curl -o bootstrap-salt.sh -L https://bootstrap.saltstack.com
|
||||
- sh bootstrap-salt.sh -XdPbfrq -x python3 git develop
|
||||
- sh bootstrap-salt.sh -XdPbfrq -x python3 git master
|
||||
run_command: /usr/lib/systemd/systemd
|
||||
- name: amazonlinux-2-develop-py2
|
||||
# Workaround to avoid intermittent failures on `opensuse-leap-15.1`:
|
||||
# => SCP did not finish successfully (255): (Net::SCP::Error)
|
||||
transport:
|
||||
max_ssh_sessions: 1
|
||||
# Use the `develop` image temporarily until the `master` image is available
|
||||
# Not changing the name to minimise disruption across all of the formulas
|
||||
- name: amazonlinux-2-master-py2
|
||||
driver:
|
||||
image: netmanagers/salt-develop-py2:amazonlinux-2
|
||||
provision_command:
|
||||
- curl -o bootstrap-salt.sh -L https://bootstrap.saltstack.com
|
||||
- sh bootstrap-salt.sh -XdPbfrq -x python2 git develop
|
||||
- name: arch-base-latest-master-py2
|
||||
driver:
|
||||
image: netmanagers/salt-master-py2:arch-base-latest
|
||||
provision_command:
|
||||
- curl -o bootstrap-salt.sh -L https://bootstrap.saltstack.com
|
||||
- sh bootstrap-salt.sh -XdPbfrq -x python2 git master
|
||||
run_command: /usr/lib/systemd/systemd
|
||||
|
||||
## SALT `2019.2`
|
||||
- name: debian-10-2019-2-py3
|
||||
driver:
|
||||
image: netmanagers/salt-2019.2-py3:debian-10
|
||||
provision_command:
|
||||
- apt-get install -y snapd
|
||||
- name: debian-9-2019-2-py3
|
||||
driver:
|
||||
image: netmanagers/salt-2019.2-py3:debian-9
|
||||
provision_command:
|
||||
- apt-get install -y snapd
|
||||
- name: ubuntu-1804-2019-2-py3
|
||||
driver:
|
||||
image: netmanagers/salt-2019.2-py3:ubuntu-18.04
|
||||
- name: centos-7-2019-2-py3
|
||||
- name: centos-8-2019-2-py3
|
||||
driver:
|
||||
image: netmanagers/salt-2019.2-py3:centos-7
|
||||
- name: fedora-30-2019-2-py3
|
||||
image: netmanagers/salt-2019.2-py3:centos-8
|
||||
- name: fedora-31-2019-2-py3
|
||||
driver:
|
||||
image: netmanagers/salt-2019.2-py3:fedora-30
|
||||
- name: opensuse-leap-15-2019-2-py3
|
||||
image: netmanagers/salt-2019.2-py3:fedora-31
|
||||
- name: opensuse-leap-151-2019-2-py3
|
||||
driver:
|
||||
image: netmanagers/salt-2019.2-py3:opensuse-leap-15
|
||||
image: netmanagers/salt-2019.2-py3:opensuse-leap-15.1
|
||||
run_command: /usr/lib/systemd/systemd
|
||||
# Workaround to avoid intermittent failures on `opensuse-leap-15.1`:
|
||||
# => SCP did not finish successfully (255): (Net::SCP::Error)
|
||||
transport:
|
||||
max_ssh_sessions: 1
|
||||
- name: centos-7-2019-2-py2
|
||||
driver:
|
||||
image: netmanagers/salt-2019.2-py2:centos-7
|
||||
- name: amazonlinux-2-2019-2-py2
|
||||
driver:
|
||||
image: netmanagers/salt-2019.2-py2:amazonlinux-2
|
||||
- name: arch-base-latest-2019-2-py2
|
||||
driver:
|
||||
image: netmanagers/salt-2019.2-py2:arch-base-latest
|
||||
run_command: /usr/lib/systemd/systemd
|
||||
|
||||
## SALT `2018.3`
|
||||
- name: fedora-30-2018-3-py3
|
||||
driver:
|
||||
image: netmanagers/salt-2018.3-py3:fedora-30
|
||||
- name: debian-9-2018-3-py2
|
||||
driver:
|
||||
image: netmanagers/salt-2018.3-py2:debian-9
|
||||
provision_command:
|
||||
- apt-get install -y snapd
|
||||
- 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
|
||||
- name: opensuse-leap-151-2018-3-py2
|
||||
driver:
|
||||
image: netmanagers/salt-2018.3-py2:fedora-29
|
||||
- name: opensuse-leap-15-2018-3-py2
|
||||
driver:
|
||||
image: netmanagers/salt-2018.3-py2:opensuse-leap-15
|
||||
image: netmanagers/salt-2018.3-py2:opensuse-leap-15.1
|
||||
run_command: /usr/lib/systemd/systemd
|
||||
# Workaround to avoid intermittent failures on `opensuse-leap-15.1`:
|
||||
# => SCP did not finish successfully (255): (Net::SCP::Error)
|
||||
transport:
|
||||
max_ssh_sessions: 1
|
||||
- name: amazonlinux-2-2018-3-py2
|
||||
driver:
|
||||
image: netmanagers/salt-2018.3-py2:amazonlinux-2
|
||||
- name: arch-base-latest-2018-3-py2
|
||||
driver:
|
||||
image: netmanagers/salt-2018.3-py2:arch-base-latest
|
||||
run_command: /usr/lib/systemd/systemd
|
||||
|
||||
## SALT `2017.7`
|
||||
- name: debian-8-2017-7-py2
|
||||
|
@ -103,20 +145,28 @@ platforms:
|
|||
driver:
|
||||
image: netmanagers/salt-2017.7-py2:centos-6
|
||||
run_command: /sbin/init
|
||||
- name: fedora-29-2017-7-py2
|
||||
- name: fedora-30-2017-7-py2
|
||||
driver:
|
||||
image: netmanagers/salt-2017.7-py2:fedora-29
|
||||
- name: opensuse-leap-15-2017-7-py2
|
||||
image: netmanagers/salt-2017.7-py2:fedora-30
|
||||
- name: opensuse-leap-151-2017-7-py2
|
||||
driver:
|
||||
image: netmanagers/salt-2017.7-py2:opensuse-leap-15
|
||||
image: netmanagers/salt-2017.7-py2:opensuse-leap-15.1
|
||||
run_command: /usr/lib/systemd/systemd
|
||||
# Workaround to avoid intermittent failures on `opensuse-leap-15.1`:
|
||||
# => SCP did not finish successfully (255): (Net::SCP::Error)
|
||||
transport:
|
||||
max_ssh_sessions: 1
|
||||
- name: amazonlinux-2-2017-7-py2
|
||||
driver:
|
||||
image: netmanagers/salt-2017.7-py2:amazonlinux-2
|
||||
- name: arch-base-latest-2017-7-py2
|
||||
driver:
|
||||
image: netmanagers/salt-2017.7-py2:arch-base-latest
|
||||
run_command: /usr/lib/systemd/systemd
|
||||
|
||||
provisioner:
|
||||
name: salt_solo
|
||||
log_level: info
|
||||
log_level: debug
|
||||
salt_install: none
|
||||
require_chef: false
|
||||
formula: packages
|
||||
|
@ -135,7 +185,8 @@ verifier:
|
|||
suites:
|
||||
- name: debian
|
||||
includes:
|
||||
- debian-10-develop-py3
|
||||
- debian-10-master-py3
|
||||
- debian-10-2019-2-py3
|
||||
- debian-9-2019-2-py3
|
||||
- debian-9-2018-3-py2
|
||||
- debian-8-2017-7-py2
|
||||
|
@ -143,6 +194,7 @@ suites:
|
|||
state_top:
|
||||
base:
|
||||
'*':
|
||||
- node
|
||||
- packages
|
||||
pillars:
|
||||
top.sls:
|
||||
|
@ -150,14 +202,17 @@ suites:
|
|||
'*':
|
||||
- packages
|
||||
pillars_from_files:
|
||||
packages.sls: pillar.example
|
||||
packages.sls: test/salt/pillar/debian.sls
|
||||
dependencies:
|
||||
- name: node
|
||||
repo: git
|
||||
source: https://github.com/saltstack-formulas/node-formula.git
|
||||
verifier:
|
||||
inspec_tests:
|
||||
- path: test/integration/default
|
||||
|
||||
- name: ubuntu
|
||||
includes:
|
||||
- ubuntu-1804-develop-py3
|
||||
- ubuntu-1804-master-py3
|
||||
- ubuntu-1804-2019-2-py3
|
||||
- ubuntu-1604-2018-3-py2
|
||||
- ubuntu-1604-2017-7-py2
|
||||
|
@ -165,6 +220,7 @@ suites:
|
|||
state_top:
|
||||
base:
|
||||
'*':
|
||||
- golang.package
|
||||
- packages
|
||||
pillars:
|
||||
top.sls:
|
||||
|
@ -172,15 +228,20 @@ suites:
|
|||
'*':
|
||||
- packages
|
||||
pillars_from_files:
|
||||
packages.sls: test/salt/pillar/pillar.example.ubuntu.1804
|
||||
packages.sls: test/salt/pillar/ubuntu.sls
|
||||
dependencies:
|
||||
- name: golang
|
||||
repo: git
|
||||
source: https://github.com/saltstack-formulas/golang-formula.git
|
||||
verifier:
|
||||
inspec_tests:
|
||||
- path: test/integration/default
|
||||
|
||||
- name: fedora30
|
||||
- name: fedora
|
||||
includes:
|
||||
- fedora-30-develop-py3
|
||||
- fedora-30-2019-2-py3
|
||||
- fedora-31-master-py3
|
||||
- fedora-31-2019-2-py3
|
||||
- fedora-30-2018-3-py3
|
||||
- fedora-30-2017-7-py2
|
||||
provisioner:
|
||||
state_top:
|
||||
base:
|
||||
|
@ -192,94 +253,70 @@ suites:
|
|||
'*':
|
||||
- packages
|
||||
pillars_from_files:
|
||||
packages.sls: test/salt/pillar/pillar.example.fedora30
|
||||
packages.sls: test/salt/pillar/fedora.sls
|
||||
verifier:
|
||||
inspec_tests:
|
||||
- path: test/integration/default
|
||||
|
||||
- name: fedora29
|
||||
includes:
|
||||
- fedora-29-2018-3-py2
|
||||
- fedora-29-2017-7-py2
|
||||
provisioner:
|
||||
state_top:
|
||||
base:
|
||||
'*':
|
||||
- packages
|
||||
pillars:
|
||||
top.sls:
|
||||
base:
|
||||
'*':
|
||||
- packages
|
||||
pillars_from_files:
|
||||
packages.sls: test/salt/pillar/pillar.example.fedora29
|
||||
verifier:
|
||||
inspec_tests:
|
||||
- path: test/integration/default
|
||||
|
||||
- name: centos
|
||||
includes:
|
||||
- centos-7-develop-py3
|
||||
- centos-7-2019-2-py3
|
||||
- centos-8-master-py3
|
||||
- centos-8-2019-2-py3
|
||||
- centos-7-2019-2-py2
|
||||
- centos-7-2018-3-py2
|
||||
- centos-6-2017-7-py2
|
||||
provisioner:
|
||||
state_top:
|
||||
base:
|
||||
'*':
|
||||
- epel
|
||||
- packages
|
||||
pillars:
|
||||
top.sls:
|
||||
base:
|
||||
'*':
|
||||
- packages
|
||||
pillars_from_files:
|
||||
packages.sls: test/salt/pillar/redhat.sls
|
||||
dependencies:
|
||||
- name: epel
|
||||
repo: git
|
||||
source: https://github.com/saltstack-formulas/epel-formula.git
|
||||
state_top:
|
||||
base:
|
||||
'*':
|
||||
- packages
|
||||
pillars:
|
||||
top.sls:
|
||||
base:
|
||||
'*':
|
||||
- packages
|
||||
pillars_from_files:
|
||||
packages.sls: test/salt/pillar/pillar.example.redhat
|
||||
verifier:
|
||||
inspec_tests:
|
||||
- path: test/integration/default
|
||||
|
||||
- name: amazonlinux
|
||||
- name: amazon
|
||||
includes:
|
||||
- amazonlinux-2-develop-py2
|
||||
- amazonlinux-2-master-py2
|
||||
- amazonlinux-2-2019-2-py2
|
||||
- amazonlinux-2-2018-3-py2
|
||||
- amazonlinux-2-2017-7-py2
|
||||
provisioner:
|
||||
state_top:
|
||||
base:
|
||||
'*':
|
||||
- epel
|
||||
- packages
|
||||
pillars:
|
||||
top.sls:
|
||||
base:
|
||||
'*':
|
||||
- packages
|
||||
pillars_from_files:
|
||||
packages.sls: test/salt/pillar/amazon.sls
|
||||
dependencies:
|
||||
- name: epel
|
||||
repo: git
|
||||
source: https://github.com/saltstack-formulas/epel-formula.git
|
||||
state_top:
|
||||
base:
|
||||
'*':
|
||||
- packages
|
||||
pillars:
|
||||
top.sls:
|
||||
base:
|
||||
'*':
|
||||
- packages
|
||||
pillars_from_files:
|
||||
packages.sls: test/salt/pillar/pillar.example.amazonlinux
|
||||
verifier:
|
||||
inspec_tests:
|
||||
- path: test/integration/default
|
||||
|
||||
- name: suse
|
||||
includes:
|
||||
- opensuse-leap-15-develop-py3
|
||||
- opensuse-leap-15-2019-2-py3
|
||||
- opensuse-leap-15-2018-3-py2
|
||||
- opensuse-leap-15-2017-7-py2
|
||||
- opensuse-leap-151-master-py3
|
||||
- opensuse-leap-151-2019-2-py3
|
||||
- opensuse-leap-151-2018-3-py2
|
||||
- opensuse-leap-151-2017-7-py2
|
||||
provisioner:
|
||||
# dependencies:
|
||||
# - name: epel
|
||||
# repo: git
|
||||
# source: https://github.com/saltstack-formulas/epel-formula.git
|
||||
state_top:
|
||||
base:
|
||||
'*':
|
||||
|
@ -290,7 +327,28 @@ suites:
|
|||
'*':
|
||||
- packages
|
||||
pillars_from_files:
|
||||
packages.sls: test/salt/pillar/pillar.example.opensuse
|
||||
packages.sls: test/salt/pillar/opensuse.sls
|
||||
verifier:
|
||||
inspec_tests:
|
||||
- path: test/integration/default
|
||||
- name: arch
|
||||
includes:
|
||||
- arch-base-latest-master-py2
|
||||
- arch-base-latest-2019-2-py2
|
||||
- arch-base-latest-2018-3-py2
|
||||
- arch-base-latest-2017-7-py2
|
||||
provisioner:
|
||||
state_top:
|
||||
base:
|
||||
'*':
|
||||
- packages
|
||||
pillars:
|
||||
top.sls:
|
||||
base:
|
||||
'*':
|
||||
- packages
|
||||
pillars_from_files:
|
||||
packages.sls: test/salt/pillar/arch.sls
|
||||
verifier:
|
||||
inspec_tests:
|
||||
- path: test/integration/default
|
||||
|
|
|
@ -14,9 +14,9 @@ sed -i -e "s_^\(version:\).*_\1 ${1}_" FORMULA
|
|||
sudo -H pip install m2r
|
||||
|
||||
# Copy and then convert the `.md` docs
|
||||
cp *.md docs/
|
||||
cd docs/
|
||||
m2r --overwrite *.md
|
||||
cp ./*.md docs/
|
||||
cd docs/ || exit
|
||||
m2r --overwrite ./*.md
|
||||
|
||||
# Change excess `H1` headings to `H2` in converted `CHANGELOG.rst`
|
||||
sed -i -e '/^=.*$/s/=/-/g' CHANGELOG.rst
|
||||
|
|
18
release-rules.js
Normal file
18
release-rules.js
Normal file
|
@ -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'},
|
||||
];
|
|
@ -63,7 +63,7 @@ module.exports = {
|
|||
}
|
||||
|
||||
if (typeof commit.hash === `string`) {
|
||||
commit.hash = commit.hash.substring(0, 7)
|
||||
commit.shortHash = commit.hash.substring(0, 7)
|
||||
}
|
||||
|
||||
if (typeof commit.subject === `string`) {
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# vim: ft=yaml
|
||||
---
|
||||
name: default
|
||||
title: packages formula
|
||||
maintainer: SaltStack Formulas
|
||||
|
@ -12,3 +15,4 @@ supports:
|
|||
- platform-name: suse
|
||||
- platform-name: freebsd
|
||||
- platform-name: amazon
|
||||
- platform-name: arch
|
||||
|
|
Loading…
Add table
Reference in a new issue