Saltstack Official Chrony Formula
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

107 行
3.7KB

  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. include:
  22. ## Define the test stage that runs the linters (and testing matrix, if applicable)
  23. # Run all of the linters in a single job
  24. - language: node_js
  25. node_js: lts/*
  26. env: Lint
  27. name: 'Lint: salt-lint, yamllint, rubocop & commitlint'
  28. before_install: skip
  29. script:
  30. # Install and run `salt-lint`
  31. - pip install --user salt-lint
  32. - git ls-files | grep '\.sls$\|\.jinja$\|\.j2$\|\.tmpl$\|\.tst$'
  33. | xargs salt-lint
  34. # Install and run `yamllint`
  35. # Need at least `v1.17.0` for the `yaml-files` setting
  36. - pip install --user yamllint>=1.17.0
  37. - yamllint -s .
  38. # Install and run `rubocop`
  39. - gem install rubocop
  40. - rubocop -d
  41. # Install and run `commitlint`
  42. - npm i -D @commitlint/config-conventional
  43. @commitlint/travis-cli
  44. - commitlint-travis
  45. ## Define the rest of the matrix based on Kitchen testing
  46. # Make sure the instances listed below match up with
  47. # the `platforms` defined in `kitchen.yml`
  48. - env: INSTANCE=default-debian-10-master-py3
  49. # - env: INSTANCE=default-ubuntu-1804-master-py3
  50. # - env: INSTANCE=default-centos-8-master-py3
  51. # - env: INSTANCE=default-fedora-31-master-py3
  52. # - env: INSTANCE=default-opensuse-leap-151-master-py3
  53. # - env: INSTANCE=default-amazonlinux-2-master-py2
  54. # - env: INSTANCE=default-arch-base-latest-master-py2
  55. # - env: INSTANCE=default-debian-10-2019-2-py3
  56. # - env: INSTANCE=default-debian-9-2019-2-py3
  57. - env: INSTANCE=default-ubuntu-1804-2019-2-py3
  58. # - env: INSTANCE=default-centos-8-2019-2-py3
  59. # - env: INSTANCE=default-fedora-31-2019-2-py3
  60. - env: INSTANCE=default-opensuse-leap-151-2019-2-py3
  61. # - env: INSTANCE=default-centos-7-2019-2-py2
  62. - env: INSTANCE=default-amazonlinux-2-2019-2-py2
  63. # - env: INSTANCE=default-arch-base-latest-2019-2-py2
  64. - env: INSTANCE=default-fedora-30-2018-3-py3
  65. # - env: INSTANCE=default-debian-9-2018-3-py2
  66. # - env: INSTANCE=default-ubuntu-1604-2018-3-py2
  67. # - env: INSTANCE=default-centos-7-2018-3-py2
  68. # - env: INSTANCE=default-opensuse-leap-151-2018-3-py2
  69. # - env: INSTANCE=default-amazonlinux-2-2018-3-py2
  70. - env: INSTANCE=default-arch-base-latest-2018-3-py2
  71. # - env: INSTANCE=default-debian-8-2017-7-py2
  72. # - env: INSTANCE=default-ubuntu-1604-2017-7-py2
  73. - env: INSTANCE=default-centos-6-2017-7-py2
  74. # - env: INSTANCE=default-fedora-30-2017-7-py2
  75. # - env: INSTANCE=default-opensuse-leap-151-2017-7-py2
  76. # - env: INSTANCE=default-amazonlinux-2-2017-7-py2
  77. # - env: INSTANCE=default-arch-base-latest-2017-7-py2
  78. ## Define the release stage that runs `semantic-release`
  79. - stage: release
  80. language: node_js
  81. node_js: lts/*
  82. env: Release
  83. name: 'Run semantic-release inc. file updates to AUTHORS, CHANGELOG & FORMULA'
  84. before_install: skip
  85. script:
  86. # Update `AUTHORS.md`
  87. - export MAINTAINER_TOKEN=${GH_TOKEN}
  88. - go get github.com/myii/maintainer
  89. - maintainer contributor
  90. # Install all dependencies required for `semantic-release`
  91. - npm i -D @semantic-release/changelog@3
  92. @semantic-release/exec@3
  93. @semantic-release/git@7
  94. deploy:
  95. provider: script
  96. skip_cleanup: true
  97. script:
  98. # Run `semantic-release`
  99. - npx semantic-release@15