Skip to content

Commit 7866bfc

Browse files
authored
Merge pull request #9 from myii/feat/implement-semantic-release
feat(semantic-release): implement for this formula
2 parents c4dc52b + 07eec72 commit 7866bfc

18 files changed

+862
-20
lines changed

.gitignore

+122
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,122 @@
1+
# Byte-compiled / optimized / DLL files
2+
__pycache__/
3+
*.py[cod]
4+
*$py.class
5+
6+
# C extensions
7+
*.so
8+
9+
# Distribution / packaging
10+
.Python
11+
env/
12+
build/
13+
develop-eggs/
14+
dist/
15+
downloads/
16+
eggs/
17+
.eggs/
18+
lib/
19+
lib64/
20+
parts/
21+
sdist/
22+
var/
23+
wheels/
24+
*.egg-info/
25+
.installed.cfg
26+
*.egg
27+
28+
# PyInstaller
29+
# Usually these files are written by a python script from a packager
30+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
31+
*.manifest
32+
*.spec
33+
34+
# Installer logs
35+
pip-log.txt
36+
pip-delete-this-directory.txt
37+
38+
# Unit test / coverage reports
39+
htmlcov/
40+
.tox/
41+
.coverage
42+
.coverage.*
43+
.cache
44+
nosetests.xml
45+
coverage.xml
46+
*.cover
47+
.hypothesis/
48+
.kitchen
49+
.kitchen.local.yml
50+
kitchen.local.yml
51+
junit-*.xml
52+
53+
# Translations
54+
*.mo
55+
*.pot
56+
57+
# Django stuff:
58+
*.log
59+
local_settings.py
60+
61+
# Flask stuff:
62+
instance/
63+
.webassets-cache
64+
65+
# Scrapy stuff:
66+
.scrapy
67+
68+
# Sphinx documentation
69+
docs/_build/
70+
71+
# PyBuilder
72+
target/
73+
74+
# Jupyter Notebook
75+
.ipynb_checkpoints
76+
77+
# pyenv
78+
.python-version
79+
80+
# celery beat schedule file
81+
celerybeat-schedule
82+
83+
# SageMath parsed files
84+
*.sage.py
85+
86+
# dotenv
87+
.env
88+
89+
# virtualenv
90+
.venv
91+
venv/
92+
ENV/
93+
94+
# Spyder project settings
95+
.spyderproject
96+
.spyproject
97+
98+
# Rope project settings
99+
.ropeproject
100+
101+
# mkdocs documentation
102+
/site
103+
104+
# mypy
105+
.mypy_cache/
106+
107+
# Bundler
108+
Gemfile.lock
109+
110+
# copied `.md` files used for conversion to `.rst` using `m2r`
111+
docs/*.md
112+
113+
# Vim
114+
*.sw?
115+
116+
## Collected when centralising formulas (check and sort)
117+
# `collectd-formula`
118+
.pytest_cache/
119+
/.idea/
120+
Dockerfile.*_*
121+
ignore/
122+
tmp/

.rubocop.yml

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# -*- coding: utf-8 -*-
2+
# vim: ft=yaml
3+
---
4+
# General overrides used across formulas in the org
5+
Metrics/LineLength:
6+
# Increase from default of `80`
7+
# Based on https://github.com/PyCQA/flake8-bugbear#opinionated-warnings (`B950`)
8+
Max: 88
9+
10+
# Any offenses that should be fixed, e.g. collected via. `rubocop --auto-gen-config`

.salt-lint

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# -*- coding: utf-8 -*-
2+
# vim: ft=yaml
3+
---
4+
exclude_paths: []
5+
rules: {}
6+
skip_list:
7+
# Using `salt-lint` for linting other files as well, such as Jinja macros/templates
8+
- 205 # Use ".sls" as a Salt State file extension
9+
# Skipping `207` and `208` because `210` is sufficient, at least for the time-being
10+
# I.e. Allows 3-digit unquoted codes to still be used, such as `644` and `755`
11+
- 207 # File modes should always be encapsulated in quotation marks
12+
- 208 # File modes should always contain a leading zero
13+
tags: []
14+
verbosity: 1

.travis.yml

+112
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,112 @@
1+
# -*- coding: utf-8 -*-
2+
# vim: ft=yaml
3+
---
4+
## Machine config
5+
os: 'linux'
6+
arch: 'amd64'
7+
dist: 'bionic'
8+
version: '~> 1.0'
9+
10+
## Language and cache config
11+
language: 'ruby'
12+
cache: 'bundler'
13+
14+
## Services config
15+
services:
16+
- docker
17+
18+
## Script to run for the test stage
19+
script:
20+
- bin/kitchen verify "${INSTANCE}"
21+
22+
## Stages and jobs matrix
23+
stages:
24+
- test
25+
- name: 'release'
26+
if: 'branch = master AND type != pull_request'
27+
jobs:
28+
include:
29+
## Define the test stage that runs the linters (and testing matrix, if applicable)
30+
31+
# Run all of the linters in a single job
32+
- language: 'node_js'
33+
node_js: 'lts/*'
34+
env: 'Lint'
35+
name: 'Lint: salt-lint, yamllint, rubocop & commitlint'
36+
before_install: 'skip'
37+
script:
38+
# Install and run `salt-lint`
39+
- pip install --user salt-lint
40+
- git ls-files | grep '\.sls$\|\.jinja$\|\.j2$\|\.tmpl$\|\.tst$'
41+
| xargs salt-lint
42+
# Install and run `yamllint`
43+
# Need at least `v1.17.0` for the `yaml-files` setting
44+
- pip install --user yamllint>=1.17.0
45+
- yamllint -s .
46+
# Install and run `rubocop`
47+
- gem install rubocop
48+
- rubocop -d
49+
# Install and run `commitlint`
50+
- npm i -D @commitlint/config-conventional
51+
@commitlint/travis-cli
52+
- commitlint-travis
53+
54+
## Define the rest of the matrix based on Kitchen testing
55+
# Make sure the instances listed below match up with
56+
# the `platforms` defined in `kitchen.yml`
57+
- env: INSTANCE=default-debian-10-master-py3
58+
# - env: INSTANCE=default-ubuntu-1804-master-py3
59+
# - env: INSTANCE=default-centos-8-master-py3
60+
# - env: INSTANCE=default-fedora-31-master-py3
61+
# - env: INSTANCE=default-opensuse-leap-151-master-py3
62+
# - env: INSTANCE=default-amazonlinux-2-master-py2
63+
# - env: INSTANCE=default-arch-base-latest-master-py2
64+
# - env: INSTANCE=default-debian-10-2019-2-py3
65+
# - env: INSTANCE=default-debian-9-2019-2-py3
66+
- env: INSTANCE=default-ubuntu-1804-2019-2-py3
67+
- env: INSTANCE=default-centos-8-2019-2-py3
68+
# - env: INSTANCE=default-fedora-31-2019-2-py3
69+
- env: INSTANCE=default-opensuse-leap-151-2019-2-py3
70+
# - env: INSTANCE=default-centos-7-2019-2-py2
71+
# - env: INSTANCE=default-amazonlinux-2-2019-2-py2
72+
# - env: INSTANCE=default-arch-base-latest-2019-2-py2
73+
- env: INSTANCE=default-fedora-30-2018-3-py3
74+
# - env: INSTANCE=default-debian-9-2018-3-py2
75+
# - env: INSTANCE=default-ubuntu-1604-2018-3-py2
76+
# - env: INSTANCE=default-centos-7-2018-3-py2
77+
# - env: INSTANCE=default-opensuse-leap-151-2018-3-py2
78+
# - env: INSTANCE=default-amazonlinux-2-2018-3-py2
79+
- env: INSTANCE=default-arch-base-latest-2018-3-py2
80+
# - env: INSTANCE=default-debian-8-2017-7-py2
81+
# - env: INSTANCE=default-ubuntu-1604-2017-7-py2
82+
# - env: INSTANCE=default-centos-6-2017-7-py2
83+
# - env: INSTANCE=default-fedora-30-2017-7-py2
84+
# - env: INSTANCE=default-opensuse-leap-151-2017-7-py2
85+
- env: INSTANCE=default-amazonlinux-2-2017-7-py2
86+
# - env: INSTANCE=default-arch-base-latest-2017-7-py2
87+
88+
## Define the release stage that runs `semantic-release`
89+
- stage: 'release'
90+
language: 'node_js'
91+
node_js: 'lts/*'
92+
env: 'Release'
93+
name: 'Run semantic-release inc. file updates to AUTHORS, CHANGELOG & FORMULA'
94+
before_install: 'skip'
95+
script:
96+
# Update `AUTHORS.md`
97+
- export MAINTAINER_TOKEN=${GH_TOKEN}
98+
- go get github.com/myii/maintainer
99+
- maintainer contributor
100+
101+
# Install all dependencies required for `semantic-release`
102+
- npm i -D @semantic-release/changelog@3
103+
@semantic-release/exec@3
104+
@semantic-release/git@7
105+
deploy:
106+
provider: 'script'
107+
# Opt-in to `dpl v2` to complete the Travis build config validation (beta)
108+
# * https://docs.travis-ci.com/user/build-config-validation
109+
# Deprecated `skip_cleanup` can now be avoided, `cleanup: false` is by default
110+
edge: true
111+
# Run `semantic-release`
112+
script: 'npx semantic-release@15'

.yamllint

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
# -*- coding: utf-8 -*-
2+
# vim: ft=yaml
3+
---
4+
# Extend the `default` configuration provided by `yamllint`
5+
extends: default
6+
7+
# Files to ignore completely
8+
# 1. All YAML files under directory `node_modules/`, introduced during the Travis run
9+
# 2. Any SLS files under directory `test/`, which are actually state files
10+
# 3. Any YAML files under directory `.kitchen/`, introduced during local testing
11+
ignore: |
12+
node_modules/
13+
test/**/states/**/*.sls
14+
.kitchen/
15+
16+
yaml-files:
17+
# Default settings
18+
- '*.yaml'
19+
- '*.yml'
20+
- .salt-lint
21+
- .yamllint
22+
# SaltStack Formulas additional settings
23+
- '*.example'
24+
- test/**/*.sls
25+
26+
rules:
27+
empty-values:
28+
forbid-in-block-mappings: true
29+
forbid-in-flow-mappings: true
30+
line-length:
31+
# Increase from default of `80`
32+
# Based on https://github.com/PyCQA/flake8-bugbear#opinionated-warnings (`B950`)
33+
max: 88
34+
octal-values:
35+
forbid-implicit-octal: true
36+
forbid-explicit-octal: true

CHANGELOG.md

+1-5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Change Log
1+
# Changelog
22

33
## [v0.4.0](https://github.com/saltstack-formulas/django-formula/tree/v0.4.0) (2015-06-22)
44
**Merged pull requests:**
@@ -7,7 +7,3 @@
77
- Change states to use short-dec style [\#4](https://github.com/saltstack-formulas/django-formula/pull/4) ([whiteinge](https://github.com/whiteinge))
88
- Update README.rst [\#3](https://github.com/saltstack-formulas/django-formula/pull/3) ([ghost](https://github.com/ghost))
99
- Some fixes to make this formula work on Ubuntu 14.04 LTS [\#2](https://github.com/saltstack-formulas/django-formula/pull/2) ([terminalmage](https://github.com/terminalmage))
10-
11-
12-
13-
\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*

FORMULA

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
name: django
2+
os: Debian, Ubuntu, Raspbian, RedHat, Fedora, CentOS, Suse, openSUSE, Gentoo, Funtoo, Arch, Manjaro, Alpine, FreeBSD, OpenBSD, Solaris, SmartOS, Windows, MacOS
3+
os_family: Debian, RedHat, Suse, Gentoo, Arch, Alpine, FreeBSD, OpenBSD, Solaris, Windows, MacOS
4+
version: 0.4.0
5+
release: 1
6+
minimum_version: 2017.7
7+
summary: django formula
8+
description: Set up and configure the Django web application framework
9+
top_level_dir: django

Gemfile

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# frozen_string_literal: true
2+
3+
source 'https://rubygems.org'
4+
5+
gem 'kitchen-docker', '>= 2.9'
6+
gem 'kitchen-inspec', '>= 1.1'
7+
gem 'kitchen-salt', '>= 0.6.0'

bin/kitchen

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
#!/usr/bin/env ruby
2+
# frozen_string_literal: true
3+
4+
#
5+
# This file was generated by Bundler.
6+
#
7+
# The application 'kitchen' is installed as part of a gem, and
8+
# this file is here to facilitate running it.
9+
#
10+
11+
require 'pathname'
12+
ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile',
13+
Pathname.new(__FILE__).realpath)
14+
15+
bundle_binstub = File.expand_path('bundle', __dir__)
16+
17+
if File.file?(bundle_binstub)
18+
if File.read(bundle_binstub, 300) =~ /This file was generated by Bundler/
19+
load(bundle_binstub)
20+
else
21+
abort(
22+
'Your `bin/bundle` was not generated by Bundler, '\
23+
'so this binstub cannot run. Replace `bin/bundle` by running '\
24+
'`bundle binstubs bundler --force`, then run this command again.'
25+
)
26+
end
27+
end
28+
29+
require 'rubygems'
30+
require 'bundler/setup'
31+
32+
load Gem.bin_path('test-kitchen', 'kitchen')

commitlint.config.js

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
module.exports = {
2+
extends: ['@commitlint/config-conventional'],
3+
};

0 commit comments

Comments
 (0)