Saltstack Official Salt Formula
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

114 Zeilen
4.1KB

  1. # -*- coding: utf-8 -*-
  2. # vim: ft=yaml
  3. ---
  4. ## Machine config
  5. dist: bionic
  6. sudo: required
  7. services:
  8. - docker
  9. ## Language and cache config
  10. language: ruby
  11. cache: bundler
  12. ## Script to run for the test stage
  13. script:
  14. - bin/kitchen verify "${INSTANCE}"
  15. ## Stages and jobs matrix
  16. stages:
  17. - test
  18. - name: release
  19. if: branch = master AND type != pull_request
  20. jobs:
  21. allow_failures:
  22. - env: Lint_rubocop
  23. fast_finish: true
  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 (except `rubocop`)
  27. - language: node_js
  28. node_js: lts/*
  29. env: Lint
  30. name: 'Lint: salt-lint, yamllint & commitlint'
  31. before_install: skip
  32. script:
  33. # Install and run `salt-lint`
  34. - pip install --user salt-lint
  35. - git ls-files | grep '\.sls$\|\.jinja$\|\.j2$\|\.tmpl$'
  36. | xargs -I {} 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 `commitlint`
  42. - npm install @commitlint/config-conventional -D
  43. - npm install @commitlint/travis-cli -D
  44. - commitlint-travis
  45. # Run the `rubocop` linter in a separate job that is allowed to fail
  46. # Once these lint errors are fixed, this can be merged into a single job
  47. - language: node_js
  48. node_js: lts/*
  49. env: Lint_rubocop
  50. name: 'Lint: rubocop'
  51. before_install: skip
  52. script:
  53. # Install and run `rubocop`
  54. - gem install rubocop
  55. - rubocop -d
  56. ## Define the rest of the matrix based on Kitchen testing
  57. # Make sure the instances listed below match up with
  58. # the `platforms` defined in `kitchen.yml`
  59. # The ordering used below has been selected based on the time required in Travis
  60. # The slower ones are kept as high up as possible, to run concurrently rather than
  61. # slow down the entire run at the end (i.e. `centos-6` and `opensuse`)
  62. # However, the groupings needed to be maintained in some semblance of order
  63. # so this is a best-effort matrix, in the circumstances
  64. # - env: INSTANCE=v201707-py2-debian-8-2017-7-py2
  65. - env: INSTANCE=v201707-py2-ubuntu-1604-2017-7-py2
  66. - env: INSTANCE=v201707-py2-centos-6-2017-7-py2
  67. # - env: INSTANCE=v201707-py2-amazonlinux-2-2017-7-py2
  68. # - env: INSTANCE=v201707-py2-arch-base-latest-2017-7-py2
  69. # - env: INSTANCE=v201803-py2-debian-9-2018-3-py2
  70. # - env: INSTANCE=v201803-py2-ubuntu-1604-2018-3-py2
  71. - env: INSTANCE=v201803-py2-centos-7-2018-3-py2
  72. - env: INSTANCE=v201803-py2-amazonlinux-2-2018-3-py2
  73. # - env: INSTANCE=v201803-py2-arch-base-latest-2018-3-py2
  74. - env: INSTANCE=v201902-py2-debian-9-2019-2-py2
  75. - env: INSTANCE=v201902-py2-ubuntu-1804-2019-2-py2
  76. # - env: INSTANCE=v201902-py2-centos-7-2019-2-py2
  77. # - env: INSTANCE=v201902-py2-opensuse-leap-15-2019-2-py2
  78. # - env: INSTANCE=v201902-py2-amazonlinux-2-2019-2-py2
  79. # - env: INSTANCE=v201902-py2-arch-base-latest-2019-2-py2
  80. # - env: INSTANCE=v201902-py3-debian-9-2019-2-py3
  81. # - env: INSTANCE=v201902-py3-ubuntu-1804-2019-2-py3
  82. # - env: INSTANCE=v201902-py3-centos-7-2019-2-py3
  83. - env: INSTANCE=v201902-py3-fedora-30-2019-2-py3
  84. - env: INSTANCE=v201902-py3-opensuse-leap-15-2019-2-py3
  85. ## Define the release stage that runs `semantic-release`
  86. - stage: release
  87. language: node_js
  88. node_js: lts/*
  89. env: Release
  90. name: 'Run semantic-release inc. file updates to AUTHORS, CHANGELOG & FORMULA'
  91. before_install: skip
  92. script:
  93. # Update `AUTHORS.md`
  94. - export MAINTAINER_TOKEN=${GH_TOKEN}
  95. - go get github.com/myii/maintainer
  96. - maintainer contributor
  97. # Install all dependencies required for `semantic-release`
  98. - npm install @semantic-release/changelog@3 -D
  99. - npm install @semantic-release/exec@3 -D
  100. - npm install @semantic-release/git@7 -D
  101. deploy:
  102. provider: script
  103. skip_cleanup: true
  104. script:
  105. # Run `semantic-release`
  106. - npx semantic-release@15