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

118 lines
4.2KB

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