e2e.yml 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  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. paths-ignore:
  20. - '**/*.md'
  21. - 'dolphinscheduler-python/pydolphinscheduler'
  22. push:
  23. paths-ignore:
  24. - '**/*.md'
  25. - 'dolphinscheduler-python/pydolphinscheduler'
  26. branches:
  27. - dev
  28. name: E2E
  29. concurrency:
  30. group: e2e-${{ github.event.pull_request.number || github.ref }}
  31. cancel-in-progress: true
  32. jobs:
  33. e2e:
  34. name: ${{ matrix.case.name }}
  35. runs-on: ubuntu-latest
  36. strategy:
  37. matrix:
  38. case:
  39. - name: Tenant
  40. class: org.apache.dolphinscheduler.e2e.cases.TenantE2ETest
  41. - name: Project
  42. class: org.apache.dolphinscheduler.e2e.cases.ProjectE2ETest
  43. - name: Workflow
  44. class: org.apache.dolphinscheduler.e2e.cases.WorkflowE2ETest
  45. env:
  46. RECORDING_PATH: /tmp/recording-${{ matrix.case.name }}
  47. steps:
  48. - uses: actions/checkout@v2
  49. with:
  50. submodules: true
  51. - name: Sanity Check
  52. uses: ./.github/actions/sanity-check
  53. - name: Cache local Maven repository
  54. uses: actions/cache@v2
  55. with:
  56. path: ~/.m2/repository
  57. key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
  58. restore-keys: ${{ runner.os }}-maven-
  59. - name: Build Image
  60. run: |
  61. ./mvnw -B clean install \
  62. -Dmaven.test.skip \
  63. -Dmaven.javadoc.skip \
  64. -Dmaven.checkstyle.skip \
  65. -Pdocker,release -Ddocker.tag=ci \
  66. -pl dolphinscheduler-standalone-server -am
  67. - name: Run Test
  68. run: |
  69. ./mvnw -B -f dolphinscheduler-e2e/pom.xml -am \
  70. -DfailIfNoTests=false \
  71. -Dtest=${{ matrix.case.class }} test
  72. - uses: actions/upload-artifact@v2
  73. if: always()
  74. name: Upload Recording
  75. with:
  76. name: recording-${{ matrix.case.name }}
  77. path: ${{ env.RECORDING_PATH }}
  78. retention-days: 1
  79. result:
  80. name: E2E
  81. runs-on: ubuntu-latest
  82. needs: [ e2e ]
  83. steps:
  84. - name: Status
  85. run: echo "Passed!"