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

68 Zeilen
1.8KB

  1. stages:
  2. - test
  3. # - commitlint
  4. # - name: release
  5. # if: branch = master AND type != pull_request
  6. sudo: required
  7. cache: bundler
  8. language: ruby
  9. services:
  10. - docker
  11. before_install:
  12. - bundle install
  13. # Make sure the instances listed below match up with
  14. # the `platforms` defined in `kitchen.yml`
  15. env:
  16. matrix:
  17. - INSTANCE: default-debian-9-2019-2-py3
  18. - INSTANCE: default-ubuntu-1804-2019-2-py3
  19. - INSTANCE: default-centos-7-2019-2-py2
  20. - INSTANCE: default-fedora-29-2019-2-py2
  21. - INSTANCE: default-opensuse-423-2018-3-py2
  22. - INSTANCE: default-debian-8-2018-3-py2
  23. - INSTANCE: default-ubuntu-1604-2018-3-py2
  24. - INSTANCE: default-fedora-28-2018-3-py2
  25. - INSTANCE: default-debian-8-2017-7-py2
  26. - INSTANCE: default-ubuntu-1604-2017-7-py2
  27. script:
  28. - bundle exec kitchen verify ${INSTANCE}
  29. # jobs:
  30. # include:
  31. # # Define the commitlint stage
  32. # - stage: commitlint
  33. # language: node_js
  34. # node_js: lts/*
  35. # before_install: skip
  36. # script:
  37. # - npm install @commitlint/config-conventional -D
  38. # - npm install @commitlint/travis-cli -D
  39. # - commitlint-travis
  40. # # Define the release stage that runs semantic-release
  41. # - stage: release
  42. # language: node_js
  43. # node_js: lts/*
  44. # before_install: skip
  45. # script:
  46. # # Update `AUTHORS.md`
  47. # - export MAINTAINER_TOKEN=${GH_TOKEN}
  48. # - go get github.com/myii/maintainer
  49. # - maintainer contributor
  50. #
  51. # # Install all dependencies required for `semantic-release`
  52. # - npm install @semantic-release/changelog@3 -D
  53. # - npm install @semantic-release/exec@3 -D
  54. # - npm install @semantic-release/git@7 -D
  55. # deploy:
  56. # provider: script
  57. # skip_cleanup: true
  58. # script:
  59. # # Run `semantic-release`
  60. # - npx semantic-release@15