e2e.yml 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  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: E2E
  23. concurrency:
  24. group: e2e-${{ github.event.pull_request.number || github.ref }}
  25. cancel-in-progress: true
  26. jobs:
  27. paths-filter:
  28. name: E2E-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: E2E-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. - name: Cache local Maven repository
  53. uses: actions/cache@v2
  54. with:
  55. path: ~/.m2/repository
  56. key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
  57. restore-keys: ${{ runner.os }}-maven-
  58. - name: Build Image
  59. run: |
  60. ./mvnw -B clean install \
  61. -Dmaven.test.skip \
  62. -Dmaven.javadoc.skip \
  63. -Dmaven.checkstyle.skip \
  64. -Pdocker,release -Ddocker.tag=ci \
  65. -pl dolphinscheduler-standalone-server -am
  66. - name: Export Docker Images
  67. run: |
  68. docker save apache/dolphinscheduler-standalone-server:ci -o /tmp/standalone-image.tar \
  69. && du -sh /tmp/standalone-image.tar
  70. - uses: actions/upload-artifact@v2
  71. name: Upload Docker Images
  72. with:
  73. name: standalone-image
  74. path: /tmp/standalone-image.tar
  75. retention-days: 1
  76. e2e:
  77. name: ${{ matrix.case.name }}
  78. needs: build
  79. runs-on: ubuntu-latest
  80. timeout-minutes: 30
  81. strategy:
  82. matrix:
  83. case:
  84. - name: Tenant
  85. class: org.apache.dolphinscheduler.e2e.cases.TenantE2ETest
  86. - name: User
  87. class: org.apache.dolphinscheduler.e2e.cases.UserE2ETest
  88. - name: WorkerGroup
  89. class: org.apache.dolphinscheduler.e2e.cases.WorkerGroupE2ETest
  90. - name: Project
  91. class: org.apache.dolphinscheduler.e2e.cases.ProjectE2ETest
  92. - name: Queue
  93. class: org.apache.dolphinscheduler.e2e.cases.QueueE2ETest
  94. - name: Environment
  95. class: org.apache.dolphinscheduler.e2e.cases.EnvironmentE2ETest
  96. - name: Token
  97. class: org.apache.dolphinscheduler.e2e.cases.TokenE2ETest
  98. - name: Workflow
  99. class: org.apache.dolphinscheduler.e2e.cases.WorkflowE2ETest
  100. # - name: WorkflowForSwitch
  101. # class: org.apache.dolphinscheduler.e2e.cases.WorkflowSwitchE2ETest
  102. - name: FileManage
  103. class: org.apache.dolphinscheduler.e2e.cases.FileManageE2ETest
  104. - name: UdfManage
  105. class: org.apache.dolphinscheduler.e2e.cases.UdfManageE2ETest
  106. - name: FunctionManage
  107. class: org.apache.dolphinscheduler.e2e.cases.FunctionManageE2ETest
  108. - name: MysqlDataSource
  109. class: org.apache.dolphinscheduler.e2e.cases.MysqlDataSourceE2ETest
  110. - name: ClickhouseDataSource
  111. class: org.apache.dolphinscheduler.e2e.cases.ClickhouseDataSourceE2ETest
  112. - name: PostgresDataSource
  113. class: org.apache.dolphinscheduler.e2e.cases.PostgresDataSourceE2ETest
  114. - name: SqlServerDataSource
  115. class: org.apache.dolphinscheduler.e2e.cases.SqlServerDataSourceE2ETest
  116. - name: HiveDataSource
  117. class: org.apache.dolphinscheduler.e2e.cases.HiveDataSourceE2ETest
  118. env:
  119. RECORDING_PATH: /tmp/recording-${{ matrix.case.name }}
  120. steps:
  121. - uses: actions/checkout@v2
  122. with:
  123. submodules: true
  124. - name: Cache local Maven repository
  125. uses: actions/cache@v2
  126. with:
  127. path: ~/.m2/repository
  128. key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
  129. restore-keys: ${{ runner.os }}-maven-
  130. - uses: actions/download-artifact@v2
  131. name: Download Docker Images
  132. with:
  133. name: standalone-image
  134. path: /tmp
  135. - name: Load Docker Images
  136. run: |
  137. docker load -i /tmp/standalone-image.tar
  138. - name: Run Test
  139. run: |
  140. ./mvnw -B -f dolphinscheduler-e2e/pom.xml -am \
  141. -DfailIfNoTests=false \
  142. -Dtest=${{ matrix.case.class }} test
  143. - uses: actions/upload-artifact@v2
  144. if: always()
  145. name: Upload Recording
  146. with:
  147. name: recording-${{ matrix.case.name }}
  148. path: ${{ env.RECORDING_PATH }}
  149. retention-days: 1
  150. result:
  151. name: E2E
  152. runs-on: ubuntu-latest
  153. timeout-minutes: 30
  154. needs: [ e2e, paths-filter ]
  155. if: always()
  156. steps:
  157. - name: Status
  158. run: |
  159. if [[ ${{ needs.paths-filter.outputs.not-ignore }} == 'false' && ${{ github.event_name }} == 'pull_request' ]]; then
  160. echo "Skip E2E!"
  161. exit 0
  162. fi
  163. if [[ ${{ needs.e2e.result }} != 'success' ]]; then
  164. echo "E2E Failed!"
  165. exit -1
  166. fi