unit-test.yml 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  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. name: Test
  18. on:
  19. pull_request:
  20. push:
  21. paths-ignore:
  22. - '**/*.md'
  23. - 'dolphinscheduler-ui'
  24. - 'dolphinscheduler-python/pydolphinscheduler'
  25. branches:
  26. - dev
  27. env:
  28. LOG_DIR: /tmp/dolphinscheduler
  29. concurrency:
  30. group: unit-test-${{ github.event.pull_request.number || github.ref }}
  31. cancel-in-progress: true
  32. jobs:
  33. paths-filter:
  34. name: Unit-Test-Path-Filter
  35. runs-on: ubuntu-latest
  36. outputs:
  37. not-ignore: ${{ steps.filter.outputs.not-ignore }}
  38. steps:
  39. - uses: actions/checkout@v2
  40. - uses: dorny/paths-filter@b2feaf19c27470162a626bd6fa8438ae5b263721
  41. id: filter
  42. with:
  43. filters: |
  44. not-ignore:
  45. - '!(docs/**)'
  46. unit-test:
  47. name: Unit-Test
  48. needs: paths-filter
  49. if: ${{ (needs.paths-filter.outputs.not-ignore == 'true') || (github.event_name == 'push') }}
  50. runs-on: ubuntu-latest
  51. timeout-minutes: 30
  52. steps:
  53. - uses: actions/checkout@v2
  54. with:
  55. submodules: true
  56. - name: Sanity Check
  57. uses: ./.github/actions/sanity-check
  58. - name: Set up JDK 1.8
  59. uses: actions/setup-java@v2
  60. with:
  61. java-version: 8
  62. distribution: 'adopt'
  63. - uses: actions/cache@v3
  64. with:
  65. path: ~/.m2/repository
  66. key: ${{ runner.os }}-maven
  67. - name: Run Unit tests
  68. run: ./mvnw clean verify -B -Dmaven.test.skip=false -Dcheckstyle.skip=true
  69. - name: Upload coverage report to codecov
  70. run: CODECOV_TOKEN="09c2663f-b091-4258-8a47-c981827eb29a" bash <(curl -s https://codecov.io/bash)
  71. # Set up JDK 11 for SonarCloud.
  72. - name: Set up JDK 11
  73. uses: actions/setup-java@v2
  74. with:
  75. java-version: 11
  76. distribution: 'adopt'
  77. - name: Run SonarCloud Analysis
  78. run: >
  79. ./mvnw --batch-mode verify sonar:sonar
  80. -Dsonar.coverage.jacoco.xmlReportPaths=target/site/jacoco/jacoco.xml
  81. -Dmaven.test.skip=true
  82. -Dcheckstyle.skip=true
  83. -Dsonar.host.url=https://sonarcloud.io
  84. -Dsonar.organization=apache
  85. -Dsonar.core.codeCoveragePlugin=jacoco
  86. -Dsonar.projectKey=apache-dolphinscheduler
  87. -Dsonar.login=e4058004bc6be89decf558ac819aa1ecbee57682
  88. -Dsonar.exclusions=,dolphinscheduler-ui/src/**/i18n/locale/*.js,dolphinscheduler-microbench/src/**/*
  89. -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false -Dmaven.wagon.httpconnectionManager.ttlSeconds=120
  90. env:
  91. GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
  92. SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
  93. - name: Collect logs
  94. continue-on-error: true
  95. run: |
  96. mkdir -p ${LOG_DIR}
  97. docker-compose -f $(pwd)/docker/docker-swarm/docker-compose.yml logs dolphinscheduler-postgresql > ${LOG_DIR}/db.txt
  98. - name: Upload logs
  99. uses: actions/upload-artifact@v2
  100. continue-on-error: true
  101. with:
  102. name: unit-test-logs
  103. path: ${LOG_DIR}
  104. result:
  105. name: Unit Test
  106. runs-on: ubuntu-latest
  107. timeout-minutes: 30
  108. needs: [ unit-test, paths-filter ]
  109. if: always()
  110. steps:
  111. - name: Status
  112. run: |
  113. if [[ ${{ needs.paths-filter.outputs.not-ignore }} == 'false' && ${{ github.event_name }} == 'pull_request' ]]; then
  114. echo "Skip Unit Test!"
  115. exit 0
  116. fi
  117. if [[ ${{ needs.unit-test.result }} != 'success' ]]; then
  118. echo "Unit Test Failed!"
  119. exit -1
  120. fi