backend.yml 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  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@v3
  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. - uses: actions/upload-artifact@v2
  78. name: Upload Binary Package
  79. with:
  80. name: binary-package
  81. path: ./dolphinscheduler-dist/target/apache-dolphinscheduler-dev-SNAPSHOT-bin.tar.gz
  82. retention-days: 1
  83. cluster-test:
  84. name: ${{ matrix.case.name }}
  85. needs: build
  86. runs-on: ubuntu-latest
  87. timeout-minutes: 20
  88. strategy:
  89. matrix:
  90. case:
  91. - name: cluster-test-mysql
  92. script: .github/workflows/cluster-test/mysql/start-job.sh
  93. - name: cluster-test-postgresql
  94. script: .github/workflows/cluster-test/postgresql/start-job.sh
  95. steps:
  96. - uses: actions/checkout@v2
  97. with:
  98. submodules: true
  99. - uses: actions/download-artifact@v2
  100. name: Download Binary Package
  101. with:
  102. name: binary-package
  103. path: ./
  104. - name: Running cluster test
  105. run: |
  106. /bin/bash ${{ matrix.case.script }}
  107. result:
  108. name: Build
  109. runs-on: ubuntu-latest
  110. timeout-minutes: 30
  111. needs: [ build, paths-filter, cluster-test ]
  112. if: always()
  113. steps:
  114. - name: Status
  115. run: |
  116. if [[ ${{ needs.paths-filter.outputs.not-ignore }} == 'false' && ${{ github.event_name }} == 'pull_request' ]]; then
  117. echo "Skip Build!"
  118. exit 0
  119. fi
  120. if [[ ${{ needs.build.result }} != 'success' || ${{ needs.cluster-test.result }} != 'success' ]]; then
  121. echo "Build Failed!"
  122. exit -1
  123. fi