e2e.yml 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  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. build:
  28. name: E2E-Build
  29. runs-on: ubuntu-latest
  30. timeout-minutes: 20
  31. steps:
  32. - uses: actions/checkout@v2
  33. with:
  34. submodules: true
  35. - name: Sanity Check
  36. uses: ./.github/actions/sanity-check
  37. - name: Cache local Maven repository
  38. uses: actions/cache@v2
  39. with:
  40. path: ~/.m2/repository
  41. key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
  42. restore-keys: ${{ runner.os }}-maven-
  43. - name: Build Image
  44. run: |
  45. ./mvnw -B clean install \
  46. -Dmaven.test.skip \
  47. -Dmaven.javadoc.skip \
  48. -Dmaven.checkstyle.skip \
  49. -Pdocker,release -Ddocker.tag=ci \
  50. -pl dolphinscheduler-standalone-server -am
  51. - name: Export Docker Images
  52. run: |
  53. docker save apache/dolphinscheduler-standalone-server:ci -o /tmp/standalone-image.tar \
  54. && du -sh /tmp/standalone-image.tar
  55. - uses: actions/upload-artifact@v2
  56. name: Upload Docker Images
  57. with:
  58. name: standalone-image
  59. path: /tmp/standalone-image.tar
  60. retention-days: 1
  61. e2e:
  62. name: ${{ matrix.case.name }}
  63. needs: build
  64. runs-on: ubuntu-latest
  65. timeout-minutes: 30
  66. strategy:
  67. matrix:
  68. case:
  69. - name: Tenant
  70. class: org.apache.dolphinscheduler.e2e.cases.TenantE2ETest
  71. - name: User
  72. class: org.apache.dolphinscheduler.e2e.cases.UserE2ETest
  73. - name: WorkerGroup
  74. class: org.apache.dolphinscheduler.e2e.cases.WorkerGroupE2ETest
  75. # - name: Project
  76. # class: org.apache.dolphinscheduler.e2e.cases.ProjectE2ETest
  77. - name: Queue
  78. class: org.apache.dolphinscheduler.e2e.cases.QueueE2ETest
  79. - name: Environment
  80. class: org.apache.dolphinscheduler.e2e.cases.EnvironmentE2ETest
  81. - name: Token
  82. class: org.apache.dolphinscheduler.e2e.cases.TokenE2ETest
  83. # - name: Workflow
  84. # class: org.apache.dolphinscheduler.e2e.cases.WorkflowE2ETest
  85. # - name: WorkflowForSwitch
  86. # class: org.apache.dolphinscheduler.e2e.cases.WorkflowSwitchE2ETest
  87. - name: FileManage
  88. class: org.apache.dolphinscheduler.e2e.cases.FileManageE2ETest
  89. - name: UdfManage
  90. class: org.apache.dolphinscheduler.e2e.cases.UdfManageE2ETest
  91. - name: FunctionManage
  92. class: org.apache.dolphinscheduler.e2e.cases.FunctionManageE2ETest
  93. - name: MysqlDataSource
  94. class: org.apache.dolphinscheduler.e2e.cases.MysqlDataSourceE2ETest
  95. - name: ClickhouseDataSource
  96. class: org.apache.dolphinscheduler.e2e.cases.ClickhouseDataSourceE2ETest
  97. - name: PostgresDataSource
  98. class: org.apache.dolphinscheduler.e2e.cases.PostgresDataSourceE2ETest
  99. - name: SqlServerDataSource
  100. class: org.apache.dolphinscheduler.e2e.cases.SqlServerDataSourceE2ETest
  101. - name: HiveDataSource
  102. class: org.apache.dolphinscheduler.e2e.cases.HiveDataSourceE2ETest
  103. env:
  104. RECORDING_PATH: /tmp/recording-${{ matrix.case.name }}
  105. steps:
  106. - uses: actions/checkout@v2
  107. with:
  108. submodules: true
  109. - name: Cache local Maven repository
  110. uses: actions/cache@v2
  111. with:
  112. path: ~/.m2/repository
  113. key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
  114. restore-keys: ${{ runner.os }}-maven-
  115. - uses: actions/download-artifact@v2
  116. name: Download Docker Images
  117. with:
  118. name: standalone-image
  119. path: /tmp
  120. - name: Load Docker Images
  121. run: |
  122. docker load -i /tmp/standalone-image.tar
  123. - name: Run Test
  124. run: |
  125. ./mvnw -B -f dolphinscheduler-e2e/pom.xml -am \
  126. -DfailIfNoTests=false \
  127. -Dtest=${{ matrix.case.class }} test
  128. - uses: actions/upload-artifact@v2
  129. if: always()
  130. name: Upload Recording
  131. with:
  132. name: recording-${{ matrix.case.name }}
  133. path: ${{ env.RECORDING_PATH }}
  134. retention-days: 1
  135. result:
  136. name: E2E
  137. runs-on: ubuntu-latest
  138. timeout-minutes: 30
  139. needs: [ e2e ]
  140. if: always()
  141. steps:
  142. - name: Status
  143. run: |
  144. if [[ ${{ needs.e2e.result }} == 'success' ]]; then
  145. echo "Passed!"
  146. else
  147. exit -1
  148. fi