Saltstack Official PHP Formula
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

feat(yamllint): include for this repo and apply rules throughout * Semi-automated using `ssf-formula` (v0.5.0) * Fix errors shown below: ```bash php-formula$ $(grep "\- yamllint" .travis.yml | sed -e "s:^\s\+-\s\(.*\):\1:") ./test/integration/default/inspec.yml 1:1 warning missing document start "---" (document-start) pillar.example 3:1 warning missing document start "---" (document-start) 7:22 warning truthy value should be one of [false, true] (truthy) 8:22 warning truthy value should be one of [false, true] (truthy) 10:22 warning truthy value should be one of [false, true] (truthy) 16:17 warning truthy value should be one of [false, true] (truthy) 41:12 error wrong indentation: expected 10 but found 11 (indentation) 46:27 warning truthy value should be one of [false, true] (truthy) 70:18 warning truthy value should be one of [false, true] (truthy) 74:19 warning truthy value should be one of [false, true] (truthy) 83:22 warning truthy value should be one of [false, true] (truthy) 97:22 warning truthy value should be one of [false, true] (truthy) 107:89 error line too long (93 > 88 characters) (line-length) 118:20 warning truthy value should be one of [false, true] (truthy) 126:14 error wrong indentation: expected 12 but found 13 (indentation) 126:23 warning truthy value should be one of [false, true] (truthy) 151:20 warning truthy value should be one of [false, true] (truthy) 177:19 warning truthy value should be one of [false, true] (truthy) 197:25 warning truthy value should be one of [false, true] (truthy) ```
5 年前
feat(yamllint): include for this repo and apply rules throughout * Semi-automated using `ssf-formula` (v0.5.0) * Fix errors shown below: ```bash php-formula$ $(grep "\- yamllint" .travis.yml | sed -e "s:^\s\+-\s\(.*\):\1:") ./test/integration/default/inspec.yml 1:1 warning missing document start "---" (document-start) pillar.example 3:1 warning missing document start "---" (document-start) 7:22 warning truthy value should be one of [false, true] (truthy) 8:22 warning truthy value should be one of [false, true] (truthy) 10:22 warning truthy value should be one of [false, true] (truthy) 16:17 warning truthy value should be one of [false, true] (truthy) 41:12 error wrong indentation: expected 10 but found 11 (indentation) 46:27 warning truthy value should be one of [false, true] (truthy) 70:18 warning truthy value should be one of [false, true] (truthy) 74:19 warning truthy value should be one of [false, true] (truthy) 83:22 warning truthy value should be one of [false, true] (truthy) 97:22 warning truthy value should be one of [false, true] (truthy) 107:89 error line too long (93 > 88 characters) (line-length) 118:20 warning truthy value should be one of [false, true] (truthy) 126:14 error wrong indentation: expected 12 but found 13 (indentation) 126:23 warning truthy value should be one of [false, true] (truthy) 151:20 warning truthy value should be one of [false, true] (truthy) 177:19 warning truthy value should be one of [false, true] (truthy) 197:25 warning truthy value should be one of [false, true] (truthy) ```
5 年前
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  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. 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. # Install and run `salt-lint`
  34. - pip install --user salt-lint
  35. - git ls-files | grep '\.sls$\|\.jinja$\|\.j2$\|\.tmpl$'
  36. | xargs -I {} salt-lint {}
  37. # Install and run `yamllint`
  38. # Need at least `v1.17.0` for the `yaml-files` setting
  39. - pip install --user yamllint>=1.17.0
  40. - yamllint -s .
  41. # Install and run `commitlint`
  42. - npm install @commitlint/config-conventional -D
  43. - npm install @commitlint/travis-cli -D
  44. - commitlint-travis
  45. # Run the `rubocop` linter in a separate job that is allowed to fail
  46. # Once these lint errors are fixed, this can be merged into a single job
  47. - language: node_js
  48. node_js: lts/*
  49. env: Lint_rubocop
  50. name: 'Lint: rubocop'
  51. before_install: skip
  52. script:
  53. # Install and run `rubocop`
  54. - gem install rubocop
  55. - rubocop -d
  56. ## Define the rest of the matrix based on Kitchen testing
  57. # Make sure the instances listed below match up with
  58. # the `platforms` defined in `kitchen.yml`
  59. - env: INSTANCE=debian-debian-10-develop-py3
  60. # - env: INSTANCE=ubuntu-ubuntu-1804-develop-py3
  61. # - env: INSTANCE=redhat-centos-7-develop-py3
  62. # - env: INSTANCE=redhat-fedora-30-develop-py3
  63. # - env: INSTANCE=suse-opensuse-leap-15-develop-py3
  64. # - env: INSTANCE=redhat-amazonlinux-2-develop-py2
  65. # - env: INSTANCE=debian-debian-9-2019-2-py3
  66. - env: INSTANCE=ubuntu-ubuntu-1804-2019-2-py3
  67. # - env: INSTANCE=redhat-centos-7-2019-2-py3
  68. # - env: INSTANCE=redhat-fedora-30-2019-2-py3
  69. # - env: INSTANCE=suse-opensuse-leap-15-2019-2-py3
  70. - env: INSTANCE=redhat-amazonlinux-2-2019-2-py2
  71. # - env: INSTANCE=debian-debian-9-2018-3-py2
  72. # - env: INSTANCE=ubuntu-ubuntu-1604-2018-3-py2
  73. # - env: INSTANCE=redhat-centos-7-2018-3-py2
  74. - env: INSTANCE=redhat-fedora-29-2018-3-py2
  75. - env: INSTANCE=suse-opensuse-leap-15-2018-3-py2
  76. # - env: INSTANCE=redhat-amazonlinux-2-2018-3-py2
  77. # - env: INSTANCE=debian-debian-8-2017-7-py2
  78. # - env: INSTANCE=ubuntu-ubuntu-1604-2017-7-py2
  79. - env: INSTANCE=redhat-centos-6-2017-7-py2
  80. # - env: INSTANCE=redhat-fedora-29-2017-7-py2
  81. # - env: INSTANCE=suse-opensuse-leap-15-2017-7-py2
  82. # - env: INSTANCE=redhat-amazonlinux-2-2017-7-py2
  83. ## Define the release stage that runs `semantic-release`
  84. - stage: release
  85. language: node_js
  86. node_js: lts/*
  87. env: Release
  88. name: 'Run semantic-release inc. file updates to AUTHORS, CHANGELOG & FORMULA'
  89. before_install: skip
  90. script:
  91. # Update `AUTHORS.md`
  92. - export MAINTAINER_TOKEN=${GH_TOKEN}
  93. - go get github.com/myii/maintainer
  94. - maintainer contributor
  95. # Install all dependencies required for `semantic-release`
  96. - npm install @semantic-release/changelog@3 -D
  97. - npm install @semantic-release/exec@3 -D
  98. - npm install @semantic-release/git@7 -D
  99. deploy:
  100. provider: script
  101. skip_cleanup: true
  102. script:
  103. # Run `semantic-release`
  104. - npx semantic-release@15