Saltstack Official PHP Formula
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

119 linhas
4.0KB

  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. allow_failures:
  25. - env: Lint_rubocop
  26. fast_finish: true
  27. include:
  28. ## Define the test stage that runs the linters (and testing matrix, if applicable)
  29. # Run all of the linters in a single job (except `rubocop`)
  30. - language: 'node_js'
  31. node_js: 'lts/*'
  32. env: 'Lint'
  33. name: 'Lint: salt-lint, yamllint & commitlint'
  34. before_install: 'skip'
  35. script:
  36. # Install and run `salt-lint`
  37. - pip install --user salt-lint
  38. - git ls-files | grep '\.sls$\|\.jinja$\|\.j2$\|\.tmpl$\|\.tst$'
  39. | xargs salt-lint
  40. # Install and run `yamllint`
  41. # Need at least `v1.17.0` for the `yaml-files` setting
  42. - pip install --user yamllint>=1.17.0
  43. - yamllint -s .
  44. # Install and run `commitlint`
  45. - npm i -D @commitlint/config-conventional
  46. @commitlint/travis-cli
  47. - commitlint-travis
  48. # Run the `rubocop` linter in a separate job that is allowed to fail
  49. # Once these lint errors are fixed, this can be merged into a single job
  50. - language: node_js
  51. node_js: lts/*
  52. env: Lint_rubocop
  53. name: 'Lint: rubocop'
  54. before_install: skip
  55. script:
  56. # Install and run `rubocop`
  57. - gem install rubocop
  58. - rubocop -d
  59. ## Define the rest of the matrix based on Kitchen testing
  60. # Make sure the instances listed below match up with
  61. # the `platforms` defined in `kitchen.yml`
  62. - env: INSTANCE=debian-debian-10-master-py3
  63. # - env: INSTANCE=ubuntu-ubuntu-1804-master-py3
  64. # - env: INSTANCE=redhat-centos-8-master-py3
  65. # - env: INSTANCE=redhat-fedora-31-master-py3
  66. # - env: INSTANCE=suse-opensuse-leap-151-master-py3
  67. # - env: INSTANCE=redhat-amazonlinux-2-master-py2
  68. # - env: INSTANCE=debian-debian-10-2019-2-py3
  69. # - env: INSTANCE=debian-debian-9-2019-2-py3
  70. - env: INSTANCE=ubuntu-ubuntu-1804-2019-2-py3
  71. # - env: INSTANCE=redhat-centos-8-2019-2-py3
  72. # - env: INSTANCE=redhat-fedora-31-2019-2-py3
  73. # - env: INSTANCE=suse-opensuse-leap-151-2019-2-py3
  74. # - env: INSTANCE=redhat-centos-7-2019-2-py2
  75. - env: INSTANCE=redhat-amazonlinux-2-2019-2-py2
  76. - env: INSTANCE=redhat-fedora-30-2018-3-py3
  77. # - env: INSTANCE=debian-debian-9-2018-3-py2
  78. # - env: INSTANCE=ubuntu-ubuntu-1604-2018-3-py2
  79. # - env: INSTANCE=redhat-centos-7-2018-3-py2
  80. - env: INSTANCE=suse-opensuse-leap-151-2018-3-py2
  81. # - env: INSTANCE=redhat-amazonlinux-2-2018-3-py2
  82. # - env: INSTANCE=debian-debian-8-2017-7-py2
  83. # - env: INSTANCE=ubuntu-ubuntu-1604-2017-7-py2
  84. - env: INSTANCE=redhat-centos-6-2017-7-py2
  85. # - env: INSTANCE=redhat-fedora-30-2017-7-py2
  86. # - env: INSTANCE=suse-opensuse-leap-151-2017-7-py2
  87. # - env: INSTANCE=redhat-amazonlinux-2-2017-7-py2
  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. # Install all dependencies required for `semantic-release`
  101. - npm i -D @semantic-release/changelog@3
  102. @semantic-release/exec@3
  103. @semantic-release/git@7
  104. deploy:
  105. provider: 'script'
  106. # Using deprecated `skip_cleanup` until `cleanup: false` works reliably
  107. # cleanup: false
  108. skip_cleanup: true
  109. # Run `semantic-release`
  110. script: 'npx semantic-release@15'