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

115 lines
3.8KB

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