unit-test.yml 4.4 KB

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