docs.yml 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. # Licensed to the Apache Software Foundation (ASF) under one
  2. # or more contributor license agreements. See the NOTICE file
  3. # distributed with this work for additional information
  4. # regarding copyright ownership. The ASF licenses this file
  5. # to you under the Apache License, Version 2.0 (the
  6. # "License"); you may not use this file except in compliance
  7. # with the License. You may obtain a copy of the License at
  8. #
  9. # http://www.apache.org/licenses/LICENSE-2.0
  10. #
  11. # Unless required by applicable law or agreed to in writing, software
  12. # distributed under the License is distributed on an "AS IS" BASIS,
  13. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. # See the License for the specific language governing permissions and
  15. # limitations under the License.
  16. name: Docs
  17. on:
  18. pull_request:
  19. schedule:
  20. - cron: '0 18 * * *' # TimeZone: UTC 0
  21. concurrency:
  22. group: doc-${{ github.event.pull_request.number || github.ref }}
  23. cancel-in-progress: true
  24. jobs:
  25. style:
  26. timeout-minutes: 10
  27. runs-on: ubuntu-latest
  28. steps:
  29. - uses: actions/checkout@v2
  30. - name: Style Check
  31. run: ./mvnw spotless:check
  32. img-check:
  33. timeout-minutes: 15
  34. runs-on: ubuntu-latest
  35. defaults:
  36. run:
  37. working-directory: docs
  38. steps:
  39. - uses: actions/checkout@v2
  40. - name: Set up Python 3.9
  41. uses: actions/setup-python@v2
  42. with:
  43. python-version: 3.9
  44. - name: Run Dev Relative Reference
  45. run: python img_utils.py -v dev-syntax
  46. - name: Run Image Check
  47. run: python img_utils.py -v check
  48. dead-link:
  49. if: (github.event_name == 'schedule' && github.repository == 'apache/dolphinscheduler') || (github.event_name != 'schedule')
  50. runs-on: ubuntu-latest
  51. timeout-minutes: 30
  52. steps:
  53. - uses: actions/checkout@v2
  54. - run: sudo npm install -g markdown-link-check@3.10.0
  55. # NOTE: Change command from `find . -name "*.md"` to `find . -not -path "*/node_modules/*" -not -path "*/.tox/*" -name "*.md"`
  56. # if you want to run check locally
  57. - run: |
  58. for file in $(find . -name "*.md" -not \( -path ./deploy/terraform/aws/README.md -prune \)); do
  59. markdown-link-check -c .dlc.json -q "$file"
  60. done
  61. paths-filter:
  62. name: Helm-Doc-Path-Filter
  63. runs-on: ubuntu-latest
  64. outputs:
  65. helm-doc: ${{ steps.filter.outputs.helm-doc }}
  66. steps:
  67. - uses: actions/checkout@v2
  68. - uses: dorny/paths-filter@b2feaf19c27470162a626bd6fa8438ae5b263721
  69. id: filter
  70. with:
  71. filters: |
  72. helm-doc:
  73. - 'deploy/**'
  74. helm-doc:
  75. name: Helm-Doc-Execute
  76. needs: paths-filter
  77. if: ${{ (needs.paths-filter.outputs.helm-doc == 'true') || (github.event_name == 'push') }}
  78. runs-on: ubuntu-latest
  79. timeout-minutes: 20
  80. steps:
  81. - uses: actions/checkout@v2
  82. with:
  83. submodules: true
  84. - name: Generating helm-doc
  85. run: |
  86. ./mvnw validate -P helm-doc -pl :dolphinscheduler
  87. - name: Check helm-doc
  88. run: |
  89. DIFF=$(git diff ${GITHUB_WORKSPACE}/deploy/kubernetes/*md)
  90. if [ ! -z "$DIFF" ]; then
  91. echo "###### ERROR: helm-doc is not up to date ######"
  92. echo "Please execute './mvnw validate -P helm-doc -pl :dolphinscheduler' in your clone, of your fork, of the project, and commit an updated deploy/kubernetes/README.md for the chart."
  93. echo "###### ERROR: helm-doc is not up to date ######"
  94. fi
  95. git diff --exit-code
  96. result:
  97. name: Docs
  98. runs-on: ubuntu-latest
  99. timeout-minutes: 30
  100. needs:
  101. - style
  102. - img-check
  103. - dead-link
  104. if: always()
  105. steps:
  106. - name: Status
  107. run: |
  108. if [[ ${{ contains(needs.*.result, 'failure') }} == 'true' || ${{ contains(needs.*.result, 'cancelled') }} == 'true' ]]; then
  109. echo "Build Failed!"
  110. exit 1
  111. else
  112. echo "Build Success!"
  113. fi