e2e.yml 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  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: Workflow
  78. class: org.apache.dolphinscheduler.e2e.cases.WorkflowE2ETest
  79. - name: FileManage
  80. class: org.apache.dolphinscheduler.e2e.cases.FileManageE2ETest
  81. env:
  82. RECORDING_PATH: /tmp/recording-${{ matrix.case.name }}
  83. steps:
  84. - uses: actions/checkout@v2
  85. with:
  86. submodules: true
  87. - name: Cache local Maven repository
  88. uses: actions/cache@v2
  89. with:
  90. path: ~/.m2/repository
  91. key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
  92. restore-keys: ${{ runner.os }}-maven-
  93. - uses: actions/download-artifact@v2
  94. name: Download Docker Images
  95. with:
  96. name: standalone-image
  97. path: /tmp
  98. - name: Load Docker Images
  99. run: |
  100. docker load -i /tmp/standalone-image.tar
  101. - name: Run Test
  102. run: |
  103. ./mvnw -B -f dolphinscheduler-e2e/pom.xml -am \
  104. -DfailIfNoTests=false \
  105. -Dtest=${{ matrix.case.class }} test
  106. - uses: actions/upload-artifact@v2
  107. if: always()
  108. name: Upload Recording
  109. with:
  110. name: recording-${{ matrix.case.name }}
  111. path: ${{ env.RECORDING_PATH }}
  112. retention-days: 1
  113. result:
  114. name: E2E
  115. runs-on: ubuntu-latest
  116. needs: [ e2e ]
  117. steps:
  118. - name: Status
  119. run: echo "Passed!"