api-test.yml 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  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. on:
  18. pull_request:
  19. push:
  20. branches:
  21. - dev
  22. name: API-Test
  23. concurrency:
  24. group: api-test-${{ github.event.pull_request.number || github.ref }}
  25. cancel-in-progress: true
  26. jobs:
  27. paths-filter:
  28. name: API-Test-Path-Filter
  29. runs-on: ubuntu-latest
  30. outputs:
  31. not-ignore: ${{ steps.filter.outputs.not-ignore }}
  32. steps:
  33. - uses: actions/checkout@v2
  34. - uses: dorny/paths-filter@b2feaf19c27470162a626bd6fa8438ae5b263721
  35. id: filter
  36. with:
  37. filters: |
  38. not-ignore:
  39. - '!(docs/**)'
  40. build:
  41. name: API-Test-Build
  42. needs: paths-filter
  43. if: ${{ (needs.paths-filter.outputs.not-ignore == 'true') || (github.event_name == 'push') }}
  44. runs-on: ubuntu-latest
  45. timeout-minutes: 20
  46. steps:
  47. - uses: actions/checkout@v2
  48. with:
  49. submodules: true
  50. - name: Sanity Check
  51. uses: ./.github/actions/sanity-check
  52. with:
  53. token: ${{ secrets.GITHUB_TOKEN }}
  54. - name: Cache local Maven repository
  55. uses: actions/cache@v3
  56. with:
  57. path: ~/.m2/repository
  58. key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}-api-test
  59. restore-keys: ${{ runner.os }}-maven-
  60. - name: Build Image
  61. run: |
  62. ./mvnw -B clean install \
  63. -Dmaven.test.skip \
  64. -Dmaven.javadoc.skip \
  65. -Dspotless.skip=true \
  66. -Pdocker,release -Ddocker.tag=ci
  67. - name: Export Docker Images
  68. run: |
  69. docker save apache/dolphinscheduler-standalone-server:ci -o /tmp/standalone-image.tar \
  70. && du -sh /tmp/standalone-image.tar
  71. - uses: actions/upload-artifact@v2
  72. name: Upload Docker Images
  73. with:
  74. name: standalone-image
  75. path: /tmp/standalone-image.tar
  76. retention-days: 1
  77. api-test:
  78. name: ${{ matrix.case.name }}
  79. needs: build
  80. runs-on: ubuntu-latest
  81. timeout-minutes: 30
  82. strategy:
  83. matrix:
  84. case:
  85. - name: Tenant
  86. class: org.apache.dolphinscheduler.api.test.cases.TenantAPITest
  87. - name: WorkerGroup
  88. class: org.apache.dolphinscheduler.api.test.cases.WorkerGroupAPITest
  89. - name: Project
  90. class: org.apache.dolphinscheduler.api.test.cases.ProjectAPITest
  91. - name: Workflow
  92. class: org.apache.dolphinscheduler.api.test.cases.ProcessDefinitionAPITest
  93. - name: Scheduler
  94. class: org.apache.dolphinscheduler.api.test.cases.SchedulerAPITest
  95. - name: Executor
  96. class: org.apache.dolphinscheduler.api.test.cases.ExecutorAPITest
  97. - name: ProcessInstance
  98. class: org.apache.dolphinscheduler.api.test.cases.ProcessInstanceAPITest
  99. env:
  100. RECORDING_PATH: /tmp/recording-${{ matrix.case.name }}
  101. steps:
  102. - uses: actions/checkout@v2
  103. with:
  104. submodules: true
  105. - name: Cache local Maven repository
  106. uses: actions/cache@v3
  107. with:
  108. path: ~/.m2/repository
  109. key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}-api-test
  110. restore-keys: ${{ runner.os }}-maven-
  111. - uses: actions/download-artifact@v2
  112. name: Download Docker Images
  113. with:
  114. name: standalone-image
  115. path: /tmp
  116. - name: Load Docker Images
  117. run: |
  118. docker load -i /tmp/standalone-image.tar
  119. - name: Run Test
  120. run: |
  121. ./mvnw -B -f dolphinscheduler-api-test/pom.xml -am \
  122. -DfailIfNoTests=false \
  123. -Dspotless.skip=false \
  124. -Dtest=${{ matrix.case.class }} test
  125. - uses: actions/upload-artifact@v2
  126. if: always()
  127. name: Upload Recording
  128. with:
  129. name: recording-${{ matrix.case.name }}
  130. path: ${{ env.RECORDING_PATH }}
  131. retention-days: 1
  132. result:
  133. name: API-Test-Result
  134. runs-on: ubuntu-latest
  135. timeout-minutes: 30
  136. needs: [ api-test, paths-filter ]
  137. if: always()
  138. steps:
  139. - name: Status
  140. run: |
  141. if [[ ${{ needs.paths-filter.outputs.not-ignore }} == 'false' && ${{ github.event_name }} == 'pull_request' ]]; then
  142. echo "Skip API Test!"
  143. exit 0
  144. fi
  145. if [[ ${{ needs.api-test.result }} != 'success' ]]; then
  146. echo "API test Failed!"
  147. exit -1
  148. fi