Saltstack Official Chrony Formula
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

.travis.yml 2.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. # -*- coding: utf-8 -*-
  2. # vim: ft=yaml
  3. ---
  4. dist: bionic
  5. stages:
  6. - test
  7. - lint
  8. - name: release
  9. if: branch = master AND type != pull_request
  10. sudo: required
  11. cache: bundler
  12. language: ruby
  13. services:
  14. - docker
  15. # Make sure the instances listed below match up with
  16. # the `platforms` defined in `kitchen.yml`
  17. env:
  18. matrix:
  19. - INSTANCE: default-debian-10-develop-py3
  20. # - INSTANCE: default-ubuntu-1804-develop-py3
  21. # - INSTANCE: default-centos-7-develop-py3
  22. # - INSTANCE: default-fedora-30-develop-py3
  23. # - INSTANCE: default-opensuse-leap-15-develop-py3
  24. # - INSTANCE: default-amazonlinux-2-develop-py2
  25. # - INSTANCE: default-arch-base-latest-develop-py2
  26. # - INSTANCE: default-debian-9-2019-2-py3
  27. - INSTANCE: default-ubuntu-1804-2019-2-py3
  28. # - INSTANCE: default-centos-7-2019-2-py3
  29. # - INSTANCE: default-fedora-30-2019-2-py3
  30. # - INSTANCE: default-opensuse-leap-15-2019-2-py3
  31. - INSTANCE: default-amazonlinux-2-2019-2-py2
  32. - INSTANCE: default-arch-base-latest-2019-2-py2
  33. # - INSTANCE: default-debian-9-2018-3-py2
  34. # - INSTANCE: default-ubuntu-1604-2018-3-py2
  35. # - INSTANCE: default-centos-7-2018-3-py2
  36. - INSTANCE: default-fedora-29-2018-3-py2
  37. - INSTANCE: default-opensuse-leap-15-2018-3-py2
  38. # - INSTANCE: default-amazonlinux-2-2018-3-py2
  39. # - INSTANCE: default-arch-base-latest-2018-3-py2
  40. # - INSTANCE: default-debian-8-2017-7-py2
  41. # - INSTANCE: default-ubuntu-1604-2017-7-py2
  42. - INSTANCE: default-centos-6-2017-7-py2
  43. # - INSTANCE: default-fedora-29-2017-7-py2
  44. # - INSTANCE: default-opensuse-leap-15-2017-7-py2
  45. # - INSTANCE: default-amazonlinux-2-2017-7-py2
  46. # - INSTANCE: default-arch-base-latest-2017-7-py2
  47. script:
  48. - bin/kitchen verify ${INSTANCE}
  49. jobs:
  50. include:
  51. # Define the `lint` stage (runs `yamllint` and `commitlint`)
  52. - stage: lint
  53. language: node_js
  54. node_js: lts/*
  55. before_install: skip
  56. script:
  57. # Install and run `yamllint`
  58. # Need at least `v1.17.0` for the `yaml-files` setting
  59. - pip install --user yamllint>=1.17.0
  60. - yamllint -s .
  61. # Install and run `commitlint`
  62. - npm install @commitlint/config-conventional -D
  63. - npm install @commitlint/travis-cli -D
  64. - commitlint-travis
  65. # Define the release stage that runs `semantic-release`
  66. - stage: release
  67. language: node_js
  68. node_js: lts/*
  69. before_install: skip
  70. script:
  71. # Update `AUTHORS.md`
  72. - export MAINTAINER_TOKEN=${GH_TOKEN}
  73. - go get github.com/myii/maintainer
  74. - maintainer contributor
  75. # Install all dependencies required for `semantic-release`
  76. - npm install @semantic-release/changelog@3 -D
  77. - npm install @semantic-release/exec@3 -D
  78. - npm install @semantic-release/git@7 -D
  79. deploy:
  80. provider: script
  81. skip_cleanup: true
  82. script:
  83. # Run `semantic-release`
  84. - npx semantic-release@15