api-test.yml 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  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') }}
  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. -Dcheckstyle.skip=true \
  66. -Pdocker,release -Ddocker.tag=ci \
  67. -pl dolphinscheduler-standalone-server -am
  68. - name: Export Docker Images
  69. run: |
  70. docker save apache/dolphinscheduler-standalone-server:ci -o /tmp/standalone-image.tar \
  71. && du -sh /tmp/standalone-image.tar
  72. - uses: actions/upload-artifact@v2
  73. name: Upload Docker Images
  74. with:
  75. name: standalone-image
  76. path: /tmp/standalone-image.tar
  77. retention-days: 1
  78. api-test:
  79. name: ${{ matrix.case.name }}
  80. needs: build
  81. runs-on: ubuntu-latest
  82. timeout-minutes: 30
  83. strategy:
  84. matrix:
  85. case:
  86. - name: Tenant
  87. class: org.apache.dolphinscheduler.api.test.cases.TenantAPITest
  88. env:
  89. RECORDING_PATH: /tmp/recording-${{ matrix.case.name }}
  90. steps:
  91. - uses: actions/checkout@v2
  92. with:
  93. submodules: true
  94. - name: Cache local Maven repository
  95. uses: actions/cache@v3
  96. with:
  97. path: ~/.m2/repository
  98. key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
  99. restore-keys: ${{ runner.os }}-maven-
  100. - uses: actions/download-artifact@v2
  101. name: Download Docker Images
  102. with:
  103. name: standalone-image
  104. path: /tmp
  105. - name: Load Docker Images
  106. run: |
  107. docker load -i /tmp/standalone-image.tar
  108. - name: Run Test
  109. run: |
  110. ./mvnw -B -f dolphinscheduler-api-test/pom.xml -am \
  111. -DfailIfNoTests=false \
  112. -Dcheckstyle.skip=false \
  113. -Dtest=${{ matrix.case.class }} test
  114. - uses: actions/upload-artifact@v2
  115. if: always()
  116. name: Upload Recording
  117. with:
  118. name: recording-${{ matrix.case.name }}
  119. path: ${{ env.RECORDING_PATH }}
  120. retention-days: 1
  121. result:
  122. name: API-Test-Result
  123. runs-on: ubuntu-latest
  124. timeout-minutes: 30
  125. needs: [ api-test, paths-filter ]
  126. if: always()
  127. steps:
  128. - name: Status
  129. run: |
  130. if [[ ${{ needs.paths-filter.outputs.not-ignore }} == 'false' && ${{ github.event_name }} == 'pull_request' ]]; then
  131. echo "Skip API Test!"
  132. exit 0
  133. fi
  134. if [[ ${{ needs.api-test.result }} != 'success' ]]; then
  135. echo "API test Failed!"
  136. exit -1
  137. fi