backend.yml 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. #
  2. # Licensed to the Apache Software Foundation (ASF) under one or more
  3. # contributor license agreements. See the NOTICE file distributed with
  4. # this work for additional information regarding copyright ownership.
  5. # The ASF licenses this file to You under the Apache License, Version 2.0
  6. # (the "License"); you may not use this file except in compliance with
  7. # 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. #
  17. name: Backend
  18. on:
  19. push:
  20. branches:
  21. - dev
  22. paths:
  23. - '.github/workflows/backend.yml'
  24. - 'package.xml'
  25. - 'pom.xml'
  26. - 'dolphinscheduler-alert/**'
  27. - 'dolphinscheduler-api/**'
  28. - 'dolphinscheduler-common/**'
  29. - 'dolphinscheduler-dao/**'
  30. - 'dolphinscheduler-rpc/**'
  31. - 'dolphinscheduler-server/**'
  32. pull_request:
  33. concurrency:
  34. group: backend-${{ github.event.pull_request.number || github.ref }}
  35. cancel-in-progress: true
  36. jobs:
  37. paths-filter:
  38. name: Backend-Path-Filter
  39. runs-on: ubuntu-latest
  40. outputs:
  41. not-ignore: ${{ steps.filter.outputs.not-ignore }}
  42. steps:
  43. - uses: actions/checkout@v2
  44. - uses: dorny/paths-filter@b2feaf19c27470162a626bd6fa8438ae5b263721
  45. id: filter
  46. with:
  47. filters: |
  48. not-ignore:
  49. - '!(docs/**)'
  50. build:
  51. name: Backend-Build
  52. needs: paths-filter
  53. if: ${{ (needs.paths-filter.outputs.not-ignore == 'true') || (github.event_name == 'push') }}
  54. runs-on: ubuntu-latest
  55. timeout-minutes: 30
  56. steps:
  57. - uses: actions/checkout@v2
  58. with:
  59. submodules: true
  60. - name: Sanity Check
  61. uses: ./.github/actions/sanity-check
  62. - uses: actions/cache@v2
  63. with:
  64. path: ~/.m2/repository
  65. key: ${{ runner.os }}-maven
  66. - name: Build and Package
  67. run: |
  68. ./mvnw -B clean install \
  69. -Prelease,docker \
  70. -Dmaven.test.skip=true \
  71. -Dcheckstyle.skip=true \
  72. -Dhttp.keepAlive=false \
  73. -Dmaven.wagon.http.pool=false \
  74. -Dmaven.wagon.httpconnectionManager.ttlSeconds=120
  75. - name: Check dependency license
  76. run: tools/dependencies/check-LICENSE.sh
  77. result:
  78. name: Build
  79. runs-on: ubuntu-latest
  80. timeout-minutes: 30
  81. needs: [ build, paths-filter ]
  82. if: always()
  83. steps:
  84. - name: Status
  85. run: |
  86. if [[ ${{ needs.paths-filter.outputs.not-ignore }} == 'false' && ${{ github.event_name }} == 'pull_request' ]]; then
  87. echo "Skip Build!"
  88. exit 0
  89. fi
  90. if [[ ${{ needs.build.result }} != 'success' ]]; then
  91. echo "Build Failed!"
  92. exit -1
  93. fi