e2e.yml 5.0 KB

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