Saltstack Official Apt Formula
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

86 rindas
2.6KB

  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=repositories-debian-10-master-py3
  50. - env: INSTANCE=preferences-debian-10-master-py3
  51. # - env: INSTANCE=repositories-ubuntu-1804-master-py3
  52. # - env: INSTANCE=preferences-ubuntu-1804-master-py3
  53. - env: INSTANCE=repositories-debian-9-2019-2-py3
  54. - env: INSTANCE=preferences-debian-9-2019-2-py3
  55. - env: INSTANCE=repositories-ubuntu-1804-2019-2-py3
  56. - env: INSTANCE=preferences-ubuntu-1804-2019-2-py3
  57. ## Define the release stage that runs `semantic-release`
  58. - stage: release
  59. language: node_js
  60. node_js: lts/*
  61. env: Release
  62. name: 'Run semantic-release inc. file updates to AUTHORS, CHANGELOG & FORMULA'
  63. before_install: skip
  64. script:
  65. # Update `AUTHORS.md`
  66. - export MAINTAINER_TOKEN=${GH_TOKEN}
  67. - go get github.com/myii/maintainer
  68. - maintainer contributor
  69. # Install all dependencies required for `semantic-release`
  70. - npm i -D @semantic-release/changelog@3
  71. @semantic-release/exec@3
  72. @semantic-release/git@7
  73. deploy:
  74. provider: script
  75. skip_cleanup: true
  76. script:
  77. # Run `semantic-release`
  78. - npx semantic-release@15