SuperTux88's Diaspora Saltstack Formula
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

155 lines
6.1KB

  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. ## Language and cache config
  10. language: 'ruby'
  11. cache: 'bundler'
  12. ## Services config
  13. services:
  14. - docker
  15. ## Script to run for the test stage
  16. script:
  17. - bin/kitchen verify "${INSTANCE}"
  18. ## Stages and jobs matrix
  19. stages:
  20. - test
  21. - name: 'release'
  22. if: 'branch = master AND type != pull_request'
  23. jobs:
  24. include:
  25. ## Define the test stage that runs the linters (and testing matrix, if applicable)
  26. # Run all of the linters in a single job
  27. - language: 'node_js'
  28. node_js: 'lts/*'
  29. env: 'Lint'
  30. name: 'Lint: salt-lint, yamllint, rubocop, shellcheck & commitlint'
  31. before_install: 'skip'
  32. script:
  33. # Install and run `salt-lint`
  34. - pip install --user salt-lint
  35. - git ls-files -- '*.sls' '*.jinja' '*.j2' '*.tmpl' '*.tst'
  36. | xargs salt-lint
  37. # Install and run `yamllint`
  38. # Need at least `v1.17.0` for the `yaml-files` setting
  39. - pip install --user yamllint>=1.17.0
  40. - yamllint -s .
  41. # Install and run `rubocop`
  42. - gem install rubocop
  43. - rubocop -d
  44. # Run `shellcheck` (already pre-installed in Travis)
  45. - shellcheck --version
  46. - git ls-files -- '*.sh' '*.bash' '*.ksh'
  47. | xargs shellcheck
  48. # Install and run `commitlint`
  49. - npm i -D @commitlint/config-conventional
  50. @commitlint/travis-cli
  51. - commitlint-travis
  52. # Run `pre-commit` linters in a single job
  53. - language: 'python'
  54. env: 'Lint_pre-commit'
  55. name: 'Lint: pre-commit'
  56. before_install: 'skip'
  57. cache:
  58. directories:
  59. - $HOME/.cache/pre-commit
  60. script:
  61. # Install and run `pre-commit`
  62. - pip install pre-commit==2.7.1
  63. - pre-commit run --all-files --color always --verbose
  64. - pre-commit run --color always --hook-stage manual --verbose commitlint-travis
  65. ## Define the rest of the matrix based on Kitchen testing
  66. # Make sure the instances listed below match up with
  67. # the `platforms` defined in `kitchen.yml`
  68. # NOTE: Please try to select up to six instances that add some meaningful
  69. # testing of the formula's behaviour. If possible, try to refrain from
  70. # the classical "chosing all the instances because I want to test on
  71. # another/all distro/s" trap: it will just add time to the testing (see
  72. # the discussion on #121). As an example, the set chosen below covers
  73. # the most used distros families, systemd and non-systemd and the latest
  74. # three supported Saltstack versions with python2 and 3.
  75. # As for `kitchen.yml`, that should still contain all of the platforms,
  76. # to allow for comprehensive local testing
  77. # Ref: https://github.com/saltstack-formulas/template-formula/issues/118
  78. # Ref: https://github.com/saltstack-formulas/template-formula/issues/121
  79. # - env: INSTANCE=default-debian-10-tiamat-py3
  80. # - env: INSTANCE=default-debian-9-tiamat-py3
  81. # - env: INSTANCE=default-ubuntu-2004-tiamat-py3
  82. # - env: INSTANCE=default-ubuntu-1804-tiamat-py3
  83. # - env: INSTANCE=default-ubuntu-1604-tiamat-py3
  84. - env: INSTANCE=default-centos-8-tiamat-py3
  85. - env: INSTANCE=default-centos-7-tiamat-py3
  86. # - env: INSTANCE=default-amazonlinux-2-tiamat-py3
  87. # - env: INSTANCE=default-oraclelinux-8-tiamat-py3
  88. # - env: INSTANCE=default-oraclelinux-7-tiamat-py3
  89. - env: INSTANCE=default-debian-10-master-py3
  90. - env: INSTANCE=default-ubuntu-2004-master-py3
  91. - env: INSTANCE=default-ubuntu-1804-master-py3
  92. # - env: INSTANCE=default-centos-8-master-py3
  93. # - env: INSTANCE=default-fedora-32-master-py3
  94. # - env: INSTANCE=default-fedora-31-master-py3
  95. # - env: INSTANCE=default-opensuse-leap-152-master-py3
  96. # - env: INSTANCE=default-amazonlinux-2-master-py3
  97. # - env: INSTANCE=default-debian-10-3001-py3
  98. - env: INSTANCE=default-debian-9-3001-py3
  99. # - env: INSTANCE=default-ubuntu-2004-3001-py3
  100. # - env: INSTANCE=default-ubuntu-1804-3001-py3
  101. # - env: INSTANCE=default-centos-8-3001-py3
  102. # - env: INSTANCE=default-centos-7-3001-py3
  103. # - env: INSTANCE=default-fedora-32-3001-py3
  104. # - env: INSTANCE=default-fedora-31-3001-py3
  105. # - env: INSTANCE=default-opensuse-leap-152-3001-py3
  106. # - env: INSTANCE=default-amazonlinux-2-3001-py3
  107. # - env: INSTANCE=default-oraclelinux-8-3001-py3
  108. # - env: INSTANCE=default-oraclelinux-7-3001-py3
  109. # - env: INSTANCE=default-debian-10-3000-3-py3
  110. # - env: INSTANCE=default-debian-9-3000-3-py3
  111. # - env: INSTANCE=default-ubuntu-1804-3000-3-py3
  112. # - env: INSTANCE=default-centos-8-3000-3-py3
  113. # - env: INSTANCE=default-centos-7-3000-3-py3
  114. # - env: INSTANCE=default-fedora-31-3000-3-py3
  115. # - env: INSTANCE=default-opensuse-leap-152-3000-3-py3
  116. # - env: INSTANCE=default-amazonlinux-2-3000-3-py3
  117. # - env: INSTANCE=default-ubuntu-1804-3000-3-py2
  118. # - env: INSTANCE=default-ubuntu-1604-3000-3-py2
  119. # - env: INSTANCE=default-arch-base-latest-3000-3-py2
  120. # - env: INSTANCE=upstart-centos-6-2019-2-py2
  121. # - env: INSTANCE=upstart-amazonlinux-1-2019-2-py2
  122. ## Define the release stage that runs `semantic-release`
  123. - stage: 'release'
  124. language: 'node_js'
  125. node_js: 'lts/*'
  126. env: 'Release'
  127. name: 'Run semantic-release inc. file updates to AUTHORS, CHANGELOG & FORMULA'
  128. before_install: 'skip'
  129. script:
  130. # Update `AUTHORS.md`
  131. - export MAINTAINER_TOKEN=${GH_TOKEN}
  132. - go get github.com/myii/maintainer
  133. - maintainer contributor
  134. # Install all dependencies required for `semantic-release`
  135. - npm i -D @semantic-release/changelog@3
  136. @semantic-release/exec@3
  137. @semantic-release/git@7
  138. deploy:
  139. provider: 'script'
  140. # Opt-in to `dpl v2` to complete the Travis build config validation (beta)
  141. # * https://docs.travis-ci.com/user/build-config-validation
  142. # Deprecated `skip_cleanup` can now be avoided, `cleanup: false` is by default
  143. edge: true
  144. # Run `semantic-release`
  145. script: 'npx semantic-release@15.14'