Saltstack Official Logrotate 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 3.8KB

feat(yamllint): include for this repo and apply rules throughout * Semi-automated using `ssf-formula` (v0.5.0) * Fix errors shown below: ```bash logrotate-formula$ $(grep "\- yamllint" .travis.yml | sed -e "s:^\s\+-\s\(.*\):\1:") ./logrotate/osmap.yaml 1:1 warning missing document start "---" (document-start) ./logrotate/osfamilymap.yaml 1:1 warning missing document start "---" (document-start) 7:15 warning truthy value should be one of [false, true] (truthy) 12:14 warning truthy value should be one of [false, true] (truthy) 14:23 warning truthy value should be one of [false, true] (truthy) 16:14 warning truthy value should be one of [false, true] (truthy) 24:14 warning truthy value should be one of [false, true] (truthy) ./logrotate/defaults.yaml 4:1 warning missing document start "---" (document-start) 11:23 warning truthy value should be one of [false, true] (truthy) 13:13 warning truthy value should be one of [false, true] (truthy) 15:13 warning truthy value should be one of [false, true] (truthy) 16:1 error too many blank lines (1 > 0) (empty-lines) pillar.example 3:1 warning missing document start "---" (document-start) 5:4 warning missing starting space in comment (comments) 6:6 warning missing starting space in comment (comments) 6:5 warning comment not indented like content (comments-indentation) 7:6 warning missing starting space in comment (comments) 9:13 warning truthy value should be one of [false, true] (truthy) 11:13 warning truthy value should be one of [false, true] (truthy) 12:15 warning truthy value should be one of [false, true] (truthy) 13:14 warning truthy value should be one of [false, true] (truthy) 26:12 error trailing spaces (trailing-spaces) 48:12 error too many spaces after hyphen (hyphens) 69:1 error too many blank lines (1 > 0) (empty-lines) ```
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 logrotate-formula$ $(grep "\- yamllint" .travis.yml | sed -e "s:^\s\+-\s\(.*\):\1:") ./logrotate/osmap.yaml 1:1 warning missing document start "---" (document-start) ./logrotate/osfamilymap.yaml 1:1 warning missing document start "---" (document-start) 7:15 warning truthy value should be one of [false, true] (truthy) 12:14 warning truthy value should be one of [false, true] (truthy) 14:23 warning truthy value should be one of [false, true] (truthy) 16:14 warning truthy value should be one of [false, true] (truthy) 24:14 warning truthy value should be one of [false, true] (truthy) ./logrotate/defaults.yaml 4:1 warning missing document start "---" (document-start) 11:23 warning truthy value should be one of [false, true] (truthy) 13:13 warning truthy value should be one of [false, true] (truthy) 15:13 warning truthy value should be one of [false, true] (truthy) 16:1 error too many blank lines (1 > 0) (empty-lines) pillar.example 3:1 warning missing document start "---" (document-start) 5:4 warning missing starting space in comment (comments) 6:6 warning missing starting space in comment (comments) 6:5 warning comment not indented like content (comments-indentation) 7:6 warning missing starting space in comment (comments) 9:13 warning truthy value should be one of [false, true] (truthy) 11:13 warning truthy value should be one of [false, true] (truthy) 12:15 warning truthy value should be one of [false, true] (truthy) 13:14 warning truthy value should be one of [false, true] (truthy) 26:12 error trailing spaces (trailing-spaces) 48:12 error too many spaces after hyphen (hyphens) 69:1 error too many blank lines (1 > 0) (empty-lines) ```
5 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. # -*- coding: utf-8 -*-
  2. # vim: ft=yaml
  3. ---
  4. ## Machine config
  5. dist: bionic
  6. version: '~> 1.0'
  7. sudo: required
  8. services:
  9. - docker
  10. ## Language and cache config
  11. language: ruby
  12. cache: bundler
  13. ## Script to run for the test stage
  14. script:
  15. - bin/kitchen verify "${INSTANCE}"
  16. ## Stages and jobs matrix
  17. stages:
  18. - test
  19. - name: release
  20. if: branch = master AND type != pull_request
  21. jobs:
  22. include:
  23. ## Define the test stage that runs the linters (and testing matrix, if applicable)
  24. # Run all of the linters in a single job
  25. - language: node_js
  26. node_js: lts/*
  27. env: Lint
  28. name: 'Lint: salt-lint, yamllint, rubocop & commitlint'
  29. before_install: skip
  30. script:
  31. # Install and run `salt-lint`
  32. - pip install --user salt-lint
  33. - git ls-files | grep '\.sls$\|\.jinja$\|\.j2$\|\.tmpl$\|\.tst$'
  34. | xargs salt-lint
  35. # Install and run `yamllint`
  36. # Need at least `v1.17.0` for the `yaml-files` setting
  37. - pip install --user yamllint>=1.17.0
  38. - yamllint -s .
  39. # Install and run `rubocop`
  40. - gem install rubocop
  41. - rubocop -d
  42. # Install and run `commitlint`
  43. - npm i -D @commitlint/config-conventional
  44. @commitlint/travis-cli
  45. - commitlint-travis
  46. ## Define the rest of the matrix based on Kitchen testing
  47. # Make sure the instances listed below match up with
  48. # the `platforms` defined in `kitchen.yml`
  49. - env: INSTANCE=default-debian-10-master-py3
  50. # - env: INSTANCE=default-ubuntu-1804-master-py3
  51. # - env: INSTANCE=default-centos-8-master-py3
  52. # - env: INSTANCE=default-fedora-31-master-py3
  53. # - env: INSTANCE=default-opensuse-leap-151-master-py3
  54. # - env: INSTANCE=default-amazonlinux-2-master-py2
  55. # - env: INSTANCE=default-arch-base-latest-master-py2
  56. # - env: INSTANCE=default-debian-10-2019-2-py3
  57. # - env: INSTANCE=default-debian-9-2019-2-py3
  58. - env: INSTANCE=default-ubuntu-1804-2019-2-py3
  59. # - env: INSTANCE=default-centos-8-2019-2-py3
  60. # - env: INSTANCE=default-fedora-31-2019-2-py3
  61. - env: INSTANCE=default-opensuse-leap-151-2019-2-py3
  62. # - env: INSTANCE=default-centos-7-2019-2-py2
  63. - env: INSTANCE=default-amazonlinux-2-2019-2-py2
  64. # - env: INSTANCE=default-arch-base-latest-2019-2-py2
  65. - env: INSTANCE=default-fedora-30-2018-3-py3
  66. # - env: INSTANCE=default-debian-9-2018-3-py2
  67. # - env: INSTANCE=default-ubuntu-1604-2018-3-py2
  68. # - env: INSTANCE=default-centos-7-2018-3-py2
  69. # - env: INSTANCE=default-opensuse-leap-151-2018-3-py2
  70. # - env: INSTANCE=default-amazonlinux-2-2018-3-py2
  71. # - env: INSTANCE=default-arch-base-latest-2018-3-py2
  72. # - env: INSTANCE=default-debian-8-2017-7-py2
  73. # - env: INSTANCE=default-ubuntu-1604-2017-7-py2
  74. - env: INSTANCE=default-centos-6-2017-7-py2
  75. # - env: INSTANCE=default-fedora-30-2017-7-py2
  76. # - env: INSTANCE=default-opensuse-leap-151-2017-7-py2
  77. # - env: INSTANCE=default-amazonlinux-2-2017-7-py2
  78. # - env: INSTANCE=default-arch-base-latest-2017-7-py2
  79. ## Define the release stage that runs `semantic-release`
  80. - stage: release
  81. language: node_js
  82. node_js: lts/*
  83. env: Release
  84. name: 'Run semantic-release inc. file updates to AUTHORS, CHANGELOG & FORMULA'
  85. before_install: skip
  86. script:
  87. # Update `AUTHORS.md`
  88. - export MAINTAINER_TOKEN=${GH_TOKEN}
  89. - go get github.com/myii/maintainer
  90. - maintainer contributor
  91. # Install all dependencies required for `semantic-release`
  92. - npm i -D @semantic-release/changelog@3
  93. @semantic-release/exec@3
  94. @semantic-release/git@7
  95. deploy:
  96. provider: script
  97. skip_cleanup: true
  98. script:
  99. # Run `semantic-release`
  100. - npx semantic-release@15