Saltstack Official Salt 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.

164 lines
6.6KB

  1. # -*- coding: utf-8 -*-
  2. # vim: ft=yaml
  3. ---
  4. ################################################################################
  5. # NOTE: This file is UNMAINTAINED; it is provided for references purposes only.
  6. # No guarantees are tendered that this structure will work after 2020.
  7. ################################################################################
  8. # * https://en.wikipedia.org/wiki/Travis_CI:
  9. # - "... free open-source plans were removed in [sic] the end of 2020"
  10. # - https://blog.travis-ci.com/2020-11-02-travis-ci-new-billing
  11. # - https://ropensci.org/technotes/2020/11/19/moving-away-travis/
  12. ################################################################################
  13. ## Machine config
  14. os: 'linux'
  15. arch: 'amd64'
  16. dist: 'bionic'
  17. version: '~> 1.0'
  18. ## Language and cache config
  19. language: 'ruby'
  20. cache: 'bundler'
  21. ## Services config
  22. services:
  23. - docker
  24. ## Script to run for the test stage
  25. script:
  26. - bin/kitchen verify "${INSTANCE}"
  27. ## Stages and jobs matrix
  28. stages:
  29. - test
  30. # # As part of the switch away from Travis CI, ensure that the `release` stage
  31. # # is not run inadvertently
  32. # - name: 'release'
  33. # if: 'branch = master AND type != pull_request'
  34. jobs:
  35. include:
  36. ## Define the test stage that runs the linters (and testing matrix, if applicable)
  37. # Run all of the linters in a single job
  38. - language: 'node_js'
  39. node_js: 'lts/*'
  40. env: 'Lint'
  41. name: 'Lint: salt-lint, yamllint, rubocop, shellcheck & commitlint'
  42. before_install: 'skip'
  43. script:
  44. # Install and run `salt-lint`
  45. - pip install --user salt-lint
  46. - git ls-files -- '*.sls' '*.jinja' '*.j2' '*.tmpl' '*.tst'
  47. | xargs salt-lint
  48. # Install and run `yamllint`
  49. # Need at least `v1.17.0` for the `yaml-files` setting
  50. - pip install --user yamllint>=1.17.0
  51. - yamllint -s .
  52. # Install and run `rubocop`
  53. - gem install rubocop
  54. - rubocop -d
  55. # Run `shellcheck` (already pre-installed in Travis)
  56. - shellcheck --version
  57. - git ls-files -- '*.sh' '*.bash' '*.ksh'
  58. | xargs shellcheck
  59. # Install and run `commitlint`
  60. - npm i -D @commitlint/config-conventional
  61. @commitlint/travis-cli
  62. - commitlint-travis
  63. # Run `pre-commit` linters in a single job
  64. - language: 'python'
  65. env: 'Lint_pre-commit'
  66. name: 'Lint: pre-commit'
  67. before_install: 'skip'
  68. cache:
  69. directories:
  70. - $HOME/.cache/pre-commit
  71. script:
  72. # Install and run `pre-commit`
  73. - pip install pre-commit==2.7.1
  74. - pre-commit run --all-files --color always --verbose
  75. - pre-commit run --color always --hook-stage manual --verbose commitlint-travis
  76. ## Define the rest of the matrix based on Kitchen testing
  77. # Make sure the instances listed below match up with
  78. # the `platforms` defined in `kitchen.yml`
  79. - env: INSTANCE=v3003-py3-debian-11-3003-3-py3
  80. # - env: INSTANCE=v3003-py3-debian-10-3003-3-py3
  81. # - env: INSTANCE=v3003-py3-debian-9-3003-3-py3
  82. - env: INSTANCE=v3003-py3-ubuntu-2004-3003-3-py3
  83. # - env: INSTANCE=v3003-py3-ubuntu-1804-3003-3-py3
  84. - env: INSTANCE=v3003-py3-centos-8-3003-3-py3
  85. # - env: INSTANCE=v3003-py3-centos-7-3003-3-py3
  86. - env: INSTANCE=v3003-py3-fedora-34-3003-3-py3
  87. - env: INSTANCE=v3003-py3-fedora-33-3003-3-py3
  88. - env: INSTANCE=v3003-py3-opensuse-leap-153-3003-3-py3
  89. # - env: INSTANCE=v3003-py3-opensuse-leap-152-3003-3-py3
  90. # - env: INSTANCE=v3003-py3-opensuse-tmbl-latest-3003-3-py3
  91. - env: INSTANCE=v3003-py3-amazonlinux-2-3003-3-py3
  92. - env: INSTANCE=v3003-py3-oraclelinux-8-3003-3-py3
  93. # - env: INSTANCE=v3003-py3-oraclelinux-7-3003-3-py3
  94. - env: INSTANCE=v3003-py3-arch-base-latest-3003-3-py3
  95. - env: INSTANCE=v3003-py3-gentoo-stage3-latest-3003-3-py3
  96. - env: INSTANCE=v3003-py3-gentoo-stage3-systemd-3003-3-py3
  97. - env: INSTANCE=v3003-py3-almalinux-8-3003-3-py3
  98. # - env: INSTANCE=v3002-py3-debian-11-3002-7-py3
  99. - env: INSTANCE=v3002-py3-debian-10-3002-7-py3
  100. # - env: INSTANCE=v3002-py3-debian-9-3002-7-py3
  101. - env: INSTANCE=v3002-py3-ubuntu-2004-3002-7-py3
  102. # - env: INSTANCE=v3002-py3-ubuntu-1804-3002-7-py3
  103. - env: INSTANCE=v3002-py3-centos-8-3002-7-py3
  104. # - env: INSTANCE=v3002-py3-centos-7-3002-7-py3
  105. # - env: INSTANCE=v3002-py3-amazonlinux-2-3002-7-py3
  106. - env: INSTANCE=v3002-py3-oraclelinux-8-3002-7-py3
  107. # - env: INSTANCE=v3002-py3-oraclelinux-7-3002-7-py3
  108. # - env: INSTANCE=v3002-py3-gentoo-stage3-latest-3002-7-py3
  109. # - env: INSTANCE=v3002-py3-gentoo-stage3-systemd-3002-7-py3
  110. # - env: INSTANCE=v3001-py3-debian-10-3001-8-py3
  111. - env: INSTANCE=v3001-py3-debian-9-3001-8-py3
  112. # - env: INSTANCE=v3001-py3-ubuntu-2004-3001-8-py3
  113. - env: INSTANCE=v3001-py3-ubuntu-1804-3001-8-py3
  114. # - env: INSTANCE=v3001-py3-centos-8-3001-8-py3
  115. - env: INSTANCE=v3001-py3-centos-7-3001-8-py3
  116. # - env: INSTANCE=v3001-py3-amazonlinux-2-3001-8-py3
  117. # - env: INSTANCE=v3001-py3-oraclelinux-8-3001-8-py3
  118. - env: INSTANCE=v3001-py3-oraclelinux-7-3001-8-py3
  119. ## Define the release stage that runs `semantic-release`
  120. - stage: 'release'
  121. language: 'node_js'
  122. node_js: 'lts/*'
  123. env: 'Release'
  124. name: 'Run semantic-release inc. file updates to AUTHORS, CHANGELOG & FORMULA'
  125. before_install: 'skip'
  126. script:
  127. # Update `AUTHORS.md`
  128. - export MAINTAINER_TOKEN=${GH_TOKEN}
  129. - go get github.com/myii/maintainer
  130. - maintainer contributor
  131. # Install all dependencies required for `semantic-release`
  132. - npm i -D @semantic-release/changelog@3
  133. @semantic-release/exec@3
  134. @semantic-release/git@7
  135. deploy:
  136. provider: 'script'
  137. # Opt-in to `dpl v2` to complete the Travis build config validation (beta)
  138. # * https://docs.travis-ci.com/user/build-config-validation
  139. # Deprecated `skip_cleanup` can now be avoided, `cleanup: false` is by default
  140. edge: true
  141. # Run `semantic-release`
  142. script: 'npx semantic-release@15.14'
  143. # Notification options: `always`, `never` or `change`
  144. notifications:
  145. webhooks:
  146. if: 'repo = saltstack-formulas/salt-formula'
  147. urls:
  148. - https://saltstack-formulas.zulipchat.com/api/v1/external/travis?api_key=HsIq3o5QmLxdnVCKF9is0FUIpkpAY79P&stream=CI&topic=saltstack-formulas%2Fsalt-formula&ignore_pull_requests=true
  149. on_success: always # default: always
  150. on_failure: always # default: always
  151. on_start: always # default: never
  152. on_cancel: always # default: always
  153. on_error: always # default: always