Saltstack Official Apt Formula
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

85 linhas
2.6KB

  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. include:
  22. ## Define the test stage that runs the linters (and testing matrix, if applicable)
  23. # Run all of the linters in a single job
  24. - language: node_js
  25. node_js: lts/*
  26. env: Lint
  27. name: 'Lint: salt-lint, yamllint, rubocop & commitlint'
  28. before_install: skip
  29. script:
  30. # Install and run `salt-lint`
  31. - pip install --user salt-lint
  32. - git ls-files | grep '\.sls$\|\.jinja$\|\.j2$\|\.tmpl$'
  33. | xargs -I {} salt-lint {}
  34. # Install and run `yamllint`
  35. # Need at least `v1.17.0` for the `yaml-files` setting
  36. - pip install --user yamllint>=1.17.0
  37. - yamllint -s .
  38. # Install and run `rubocop`
  39. - gem install rubocop
  40. - rubocop -d
  41. # Install and run `commitlint`
  42. - npm install @commitlint/config-conventional -D
  43. - npm install @commitlint/travis-cli -D
  44. - commitlint-travis
  45. ## Define the rest of the matrix based on Kitchen testing
  46. # Make sure the instances listed below match up with
  47. # the `platforms` defined in `kitchen.yml`
  48. - env: INSTANCE=repositories-debian-10-develop-py3
  49. # - env: INSTANCE=preferences-debian-10-develop-py3
  50. # - env: INSTANCE=repositories-ubuntu-1804-develop-py3
  51. # - env: INSTANCE=preferences-ubuntu-1804-develop-py3
  52. - env: INSTANCE=repositories-debian-9-2019-2-py3
  53. - env: INSTANCE=preferences-debian-9-2019-2-py3
  54. - env: INSTANCE=repositories-ubuntu-1804-2019-2-py3
  55. - env: INSTANCE=preferences-ubuntu-1804-2019-2-py3
  56. ## Define the release stage that runs `semantic-release`
  57. - stage: release
  58. language: node_js
  59. node_js: lts/*
  60. env: Release
  61. name: 'Run semantic-release inc. file updates to AUTHORS, CHANGELOG & FORMULA'
  62. before_install: skip
  63. script:
  64. # Update `AUTHORS.md`
  65. - export MAINTAINER_TOKEN=${GH_TOKEN}
  66. - go get github.com/myii/maintainer
  67. - maintainer contributor
  68. # Install all dependencies required for `semantic-release`
  69. - npm install @semantic-release/changelog@3 -D
  70. - npm install @semantic-release/exec@3 -D
  71. - npm install @semantic-release/git@7 -D
  72. deploy:
  73. provider: script
  74. skip_cleanup: true
  75. script:
  76. # Run `semantic-release`
  77. - npx semantic-release@15