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

105 line
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$'
  33. | xargs -I {} 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 install @commitlint/config-conventional -D
  43. - npm install @commitlint/travis-cli -D
  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-develop-py3
  49. # - env: INSTANCE=default-ubuntu-1804-develop-py3
  50. # - env: INSTANCE=default-centos-7-develop-py3
  51. # - env: INSTANCE=default-fedora-30-develop-py3
  52. # - env: INSTANCE=default-opensuse-leap-15-develop-py3
  53. # - env: INSTANCE=default-amazonlinux-2-develop-py2
  54. # - env: INSTANCE=default-arch-base-latest-develop-py2
  55. # - env: INSTANCE=default-debian-9-2019-2-py3
  56. - env: INSTANCE=default-ubuntu-1804-2019-2-py3
  57. # - env: INSTANCE=default-centos-7-2019-2-py3
  58. # - env: INSTANCE=default-fedora-30-2019-2-py3
  59. # - env: INSTANCE=default-opensuse-leap-15-2019-2-py3
  60. - env: INSTANCE=default-amazonlinux-2-2019-2-py2
  61. - env: INSTANCE=default-arch-base-latest-2019-2-py2
  62. # - env: INSTANCE=default-debian-9-2018-3-py2
  63. # - env: INSTANCE=default-ubuntu-1604-2018-3-py2
  64. # - env: INSTANCE=default-centos-7-2018-3-py2
  65. - env: INSTANCE=default-fedora-29-2018-3-py2
  66. - env: INSTANCE=default-opensuse-leap-15-2018-3-py2
  67. # - env: INSTANCE=default-amazonlinux-2-2018-3-py2
  68. # - env: INSTANCE=default-arch-base-latest-2018-3-py2
  69. # - env: INSTANCE=default-debian-8-2017-7-py2
  70. # - env: INSTANCE=default-ubuntu-1604-2017-7-py2
  71. - env: INSTANCE=default-centos-6-2017-7-py2
  72. # - env: INSTANCE=default-fedora-29-2017-7-py2
  73. # - env: INSTANCE=default-opensuse-leap-15-2017-7-py2
  74. # - env: INSTANCE=default-amazonlinux-2-2017-7-py2
  75. # - env: INSTANCE=default-arch-base-latest-2017-7-py2
  76. ## Define the release stage that runs `semantic-release`
  77. - stage: release
  78. language: node_js
  79. node_js: lts/*
  80. env: Release
  81. name: 'Run semantic-release inc. file updates to AUTHORS, CHANGELOG & FORMULA'
  82. before_install: skip
  83. script:
  84. # Update `AUTHORS.md`
  85. - export MAINTAINER_TOKEN=${GH_TOKEN}
  86. - go get github.com/myii/maintainer
  87. - maintainer contributor
  88. # Install all dependencies required for `semantic-release`
  89. - npm install @semantic-release/changelog@3 -D
  90. - npm install @semantic-release/exec@3 -D
  91. - npm install @semantic-release/git@7 -D
  92. deploy:
  93. provider: script
  94. skip_cleanup: true
  95. script:
  96. # Run `semantic-release`
  97. - npx semantic-release@15