backend.yml 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  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. pull_request:
  32. concurrency:
  33. group: backend-${{ github.event.pull_request.number || github.ref }}
  34. cancel-in-progress: true
  35. jobs:
  36. paths-filter:
  37. name: Backend-Path-Filter
  38. runs-on: ubuntu-latest
  39. outputs:
  40. not-ignore: ${{ steps.filter.outputs.not-ignore }}
  41. steps:
  42. - uses: actions/checkout@v2
  43. - uses: dorny/paths-filter@b2feaf19c27470162a626bd6fa8438ae5b263721
  44. id: filter
  45. with:
  46. filters: |
  47. not-ignore:
  48. - '!(docs/**)'
  49. build:
  50. name: Backend-Build
  51. needs: paths-filter
  52. if: ${{ (needs.paths-filter.outputs.not-ignore == 'true') || (github.event_name == 'push') }}
  53. runs-on: ubuntu-latest
  54. strategy:
  55. matrix:
  56. java: [ '8', '11' ]
  57. timeout-minutes: 30
  58. steps:
  59. - uses: actions/checkout@v2
  60. with:
  61. submodules: true
  62. - name: Set up JDK ${{ matrix.java }}
  63. uses: actions/setup-java@v2
  64. with:
  65. java-version: ${{ matrix.java }}
  66. distribution: 'adopt'
  67. - name: Sanity Check
  68. uses: ./.github/actions/sanity-check
  69. with:
  70. token: ${{ secrets.GITHUB_TOKEN }}
  71. - uses: actions/cache@v3
  72. with:
  73. path: ~/.m2/repository
  74. key: ${{ runner.os }}-maven
  75. - name: Build and Package on ${{ matrix.java }}
  76. run: |
  77. ./mvnw -B clean install \
  78. -Prelease,docker \
  79. -Dmaven.test.skip=true \
  80. -Dcheckstyle.skip=true \
  81. -Dhttp.keepAlive=false \
  82. -Dmaven.wagon.http.pool=false \
  83. -Dmaven.wagon.httpconnectionManager.ttlSeconds=120
  84. - name: Check dependency license
  85. run: tools/dependencies/check-LICENSE.sh
  86. - uses: actions/upload-artifact@v2
  87. if: ${{ matrix.java == '8' }}
  88. name: Upload Binary Package
  89. with:
  90. name: binary-package-${{ matrix.java }}
  91. path: ./dolphinscheduler-dist/target/apache-dolphinscheduler-*-SNAPSHOT-bin.tar.gz
  92. retention-days: 1
  93. cluster-test:
  94. name: ${{ matrix.case.name }}
  95. needs: build
  96. runs-on: ubuntu-latest
  97. timeout-minutes: 20
  98. strategy:
  99. matrix:
  100. case:
  101. - name: cluster-test-mysql
  102. script: .github/workflows/cluster-test/mysql/start-job.sh
  103. - name: cluster-test-postgresql
  104. script: .github/workflows/cluster-test/postgresql/start-job.sh
  105. steps:
  106. - uses: actions/checkout@v2
  107. with:
  108. submodules: true
  109. - uses: actions/download-artifact@v2
  110. name: Download Binary Package
  111. with:
  112. # Only run cluster test on jdk8
  113. name: binary-package-8
  114. path: ./
  115. - name: Running cluster test
  116. run: |
  117. /bin/bash ${{ matrix.case.script }}
  118. result:
  119. name: Build
  120. runs-on: ubuntu-latest
  121. timeout-minutes: 30
  122. needs: [ build, paths-filter, cluster-test ]
  123. if: always()
  124. steps:
  125. - name: Status
  126. run: |
  127. if [[ ${{ needs.paths-filter.outputs.not-ignore }} == 'false' && ${{ github.event_name }} == 'pull_request' ]]; then
  128. echo "Skip Build!"
  129. exit 0
  130. fi
  131. if [[ ${{ needs.build.result }} != 'success' || ${{ needs.cluster-test.result }} != 'success' ]]; then
  132. echo "Build Failed!"
  133. exit -1
  134. fi