unit-test.yml 3.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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. unit-test:
  35. name: Unit Test
  36. runs-on: ubuntu-latest
  37. timeout-minutes: 30
  38. steps:
  39. - uses: actions/checkout@v2
  40. with:
  41. submodules: true
  42. - name: Sanity Check
  43. uses: ./.github/actions/sanity-check
  44. - name: Set up JDK 1.8
  45. uses: actions/setup-java@v2
  46. with:
  47. java-version: 8
  48. distribution: 'adopt'
  49. - uses: actions/cache@v2
  50. with:
  51. path: ~/.m2/repository
  52. key: ${{ runner.os }}-maven
  53. - name: Run Unit tests
  54. run: ./mvnw clean verify -B -Dmaven.test.skip=false
  55. - name: Upload coverage report to codecov
  56. run: CODECOV_TOKEN="09c2663f-b091-4258-8a47-c981827eb29a" bash <(curl -s https://codecov.io/bash)
  57. # Set up JDK 11 for SonarCloud.
  58. - name: Set up JDK 11
  59. uses: actions/setup-java@v2
  60. with:
  61. java-version: 11
  62. distribution: 'adopt'
  63. - name: Run SonarCloud Analysis
  64. run: >
  65. ./mvnw --batch-mode verify sonar:sonar
  66. -Dsonar.coverage.jacoco.xmlReportPaths=target/site/jacoco/jacoco.xml
  67. -Dmaven.test.skip=true
  68. -Dcheckstyle.skip=true
  69. -Dsonar.host.url=https://sonarcloud.io
  70. -Dsonar.organization=apache
  71. -Dsonar.core.codeCoveragePlugin=jacoco
  72. -Dsonar.projectKey=apache-dolphinscheduler
  73. -Dsonar.login=e4058004bc6be89decf558ac819aa1ecbee57682
  74. -Dsonar.exclusions=dolphinscheduler-ui/src/**/i18n/locale/*.js,dolphinscheduler-ui-next/src/**/i18n/locale/*.js,dolphinscheduler-microbench/src/**/*
  75. -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false -Dmaven.wagon.httpconnectionManager.ttlSeconds=120
  76. env:
  77. GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
  78. SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
  79. - name: Collect logs
  80. continue-on-error: true
  81. run: |
  82. mkdir -p ${LOG_DIR}
  83. docker-compose -f $(pwd)/docker/docker-swarm/docker-compose.yml logs dolphinscheduler-postgresql > ${LOG_DIR}/db.txt
  84. - name: Upload logs
  85. uses: actions/upload-artifact@v2
  86. continue-on-error: true
  87. with:
  88. name: unit-test-logs
  89. path: ${LOG_DIR}