unit-test.yml 4.3 KB

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