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.

.travis.yml 4.7KB

feat(yamllint): include for this repo and apply rules throughout * Semi-automated using `ssf-formula` (v0.5.0) * Fix errors shown below: ```bash ufw-formula$ $(grep "\- yamllint" .travis.yml | sed -e "s:^\s\+-\s\(.*\):\1:") pillar.example 1:1 warning missing document start "---" (document-start) 3:12 warning truthy value should be one of [false, true] (truthy) 7:11 warning truthy value should be one of [false, true] (truthy) 12:22 warning truthy value should be one of [false, true] (truthy) 64:13 warning truthy value should be one of [false, true] (truthy) 69:13 warning truthy value should be one of [false, true] (truthy) 77:13 warning truthy value should be one of [false, true] (truthy) 84:14 warning truthy value should be one of [false, true] (truthy) 101:16 warning truthy value should be one of [false, true] (truthy) 106:14 warning truthy value should be one of [false, true] (truthy) 110:13 warning truthy value should be one of [false, true] (truthy) test/salt/pillar/default.sls 1:1 warning missing document start "---" (document-start) 2:12 warning truthy value should be one of [false, true] (truthy) 9:14 warning truthy value should be one of [false, true] (truthy) 12:13 warning truthy value should be one of [false, true] (truthy) 15:13 warning truthy value should be one of [false, true] (truthy) 19:13 warning truthy value should be one of [false, true] (truthy) 25:14 warning truthy value should be one of [false, true] (truthy) 29:13 warning truthy value should be one of [false, true] (truthy) ```
5 years ago
feat(yamllint): include for this repo and apply rules throughout * Semi-automated using `ssf-formula` (v0.5.0) * Fix errors shown below: ```bash ufw-formula$ $(grep "\- yamllint" .travis.yml | sed -e "s:^\s\+-\s\(.*\):\1:") pillar.example 1:1 warning missing document start "---" (document-start) 3:12 warning truthy value should be one of [false, true] (truthy) 7:11 warning truthy value should be one of [false, true] (truthy) 12:22 warning truthy value should be one of [false, true] (truthy) 64:13 warning truthy value should be one of [false, true] (truthy) 69:13 warning truthy value should be one of [false, true] (truthy) 77:13 warning truthy value should be one of [false, true] (truthy) 84:14 warning truthy value should be one of [false, true] (truthy) 101:16 warning truthy value should be one of [false, true] (truthy) 106:14 warning truthy value should be one of [false, true] (truthy) 110:13 warning truthy value should be one of [false, true] (truthy) test/salt/pillar/default.sls 1:1 warning missing document start "---" (document-start) 2:12 warning truthy value should be one of [false, true] (truthy) 9:14 warning truthy value should be one of [false, true] (truthy) 12:13 warning truthy value should be one of [false, true] (truthy) 15:13 warning truthy value should be one of [false, true] (truthy) 19:13 warning truthy value should be one of [false, true] (truthy) 25:14 warning truthy value should be one of [false, true] (truthy) 29:13 warning truthy value should be one of [false, true] (truthy) ```
5 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. # -*- coding: utf-8 -*-
  2. # vim: ft=yaml
  3. ---
  4. ## Machine config
  5. os: 'linux'
  6. arch: 'amd64'
  7. dist: 'trusty'
  8. version: '~> 1.0'
  9. ## Language and cache config
  10. language: 'ruby'
  11. cache: 'bundler'
  12. ## Services config
  13. services:
  14. - docker
  15. ## Script to run for the test stage
  16. script:
  17. - bin/kitchen verify "${INSTANCE}"
  18. ## Stages and jobs matrix
  19. stages:
  20. - test
  21. - name: 'release'
  22. if: 'branch = master AND type != pull_request'
  23. jobs:
  24. allow_failures:
  25. - env: Lint_rubocop
  26. fast_finish: true
  27. include:
  28. ## Define the test stage that runs the linters (and testing matrix, if applicable)
  29. # Run all of the linters in a single job (except `rubocop`)
  30. - language: 'node_js'
  31. node_js: 'lts/*'
  32. env: 'Lint'
  33. name: 'Lint: salt-lint, yamllint, shellcheck & commitlint'
  34. before_install: 'skip'
  35. script:
  36. # Need to use `pip3` due to using `trusty` on Travis
  37. # [Py2/InsecurePlatformWarning] Tornado requires an up-to-date SSL module.
  38. - sudo apt-get install python3-pip python3-setuptools python3-wheel -y
  39. # Install and run `salt-lint`
  40. - pip3 install --user salt-lint
  41. - git ls-files -- '*.sls' '*.jinja' '*.j2' '*.tmpl' '*.tst'
  42. | xargs salt-lint
  43. # Install and run `yamllint`
  44. # Need at least `v1.17.0` for the `yaml-files` setting
  45. - pip3 install --user yamllint>=1.17.0
  46. - yamllint -s .
  47. # Run `shellcheck` (already pre-installed in Travis)
  48. - shellcheck --version
  49. - git ls-files -- '*.sh' '*.bash' '*.ksh'
  50. | xargs shellcheck
  51. # Install and run `commitlint`
  52. - npm i -D @commitlint/config-conventional
  53. @commitlint/travis-cli
  54. - commitlint-travis
  55. # Run the `rubocop` linter in a separate job that is allowed to fail
  56. # Once these lint errors are fixed, this can be merged into a single job
  57. - language: node_js
  58. node_js: lts/*
  59. env: Lint_rubocop
  60. name: 'Lint: rubocop'
  61. before_install: skip
  62. script:
  63. # Install and run `rubocop`
  64. - gem install rubocop
  65. - rubocop -d
  66. ## Define the rest of the matrix based on Kitchen testing
  67. # Make sure the instances listed below match up with
  68. # the `platforms` defined in `kitchen.yml`
  69. # - env: INSTANCE=default-debian-10-master-py3
  70. - env: INSTANCE=default-ubuntu-1804-master-py3
  71. # - env: INSTANCE=default-centos-8-master-py3
  72. # - env: INSTANCE=default-fedora-31-master-py3
  73. # - env: INSTANCE=default-opensuse-leap-151-master-py3
  74. # - env: INSTANCE=default-amazonlinux-2-master-py3
  75. # - env: INSTANCE=default-debian-10-2019-2-py3
  76. # - env: INSTANCE=default-debian-9-2019-2-py3
  77. # - env: INSTANCE=default-ubuntu-1804-2019-2-py3
  78. # - env: INSTANCE=default-centos-8-2019-2-py3
  79. # - env: INSTANCE=default-fedora-31-2019-2-py3
  80. # - env: INSTANCE=default-opensuse-leap-151-2019-2-py3
  81. # - env: INSTANCE=default-centos-7-2019-2-py2
  82. # - env: INSTANCE=default-amazonlinux-2-2019-2-py3
  83. # - env: INSTANCE=default-arch-base-latest-2019-2-py2
  84. - env: INSTANCE=default-fedora-30-2018-3-py3
  85. # - env: INSTANCE=default-debian-9-2018-3-py2
  86. # - env: INSTANCE=default-ubuntu-1604-2018-3-py2
  87. # - env: INSTANCE=default-centos-7-2018-3-py2
  88. - env: INSTANCE=default-opensuse-leap-151-2018-3-py2
  89. # - env: INSTANCE=default-amazonlinux-1-2018-3-py2
  90. - env: INSTANCE=default-arch-base-latest-2018-3-py2
  91. # - env: INSTANCE=default-debian-8-2017-7-py2
  92. - env: INSTANCE=default-ubuntu-1604-2017-7-py2
  93. # - env: INSTANCE=default-centos-6-2017-7-py2
  94. # - env: INSTANCE=default-fedora-30-2017-7-py2
  95. # - env: INSTANCE=default-opensuse-leap-151-2017-7-py2
  96. # - env: INSTANCE=default-amazonlinux-1-2017-7-py2
  97. # - env: INSTANCE=default-arch-base-latest-2017-7-py2
  98. ## Define the release stage that runs `semantic-release`
  99. - stage: 'release'
  100. language: 'node_js'
  101. node_js: 'lts/*'
  102. env: 'Release'
  103. name: 'Run semantic-release inc. file updates to AUTHORS, CHANGELOG & FORMULA'
  104. before_install: 'skip'
  105. script:
  106. # Update `AUTHORS.md`
  107. - export MAINTAINER_TOKEN=${GH_TOKEN}
  108. - go get github.com/myii/maintainer
  109. - maintainer contributor
  110. # Install all dependencies required for `semantic-release`
  111. - npm i -D @semantic-release/changelog@3
  112. @semantic-release/exec@3
  113. @semantic-release/git@7
  114. deploy:
  115. provider: 'script'
  116. # Opt-in to `dpl v2` to complete the Travis build config validation (beta)
  117. # * https://docs.travis-ci.com/user/build-config-validation
  118. # Deprecated `skip_cleanup` can now be avoided, `cleanup: false` is by default
  119. edge: true
  120. # Run `semantic-release`
  121. script: 'npx semantic-release@15.14'