ci_ut.yml 3.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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. push:
  20. branches:
  21. - dev
  22. env:
  23. LOG_DIR: /tmp/dolphinscheduler
  24. name: Unit Test
  25. jobs:
  26. build:
  27. name: Build
  28. runs-on: ubuntu-latest
  29. steps:
  30. - uses: actions/checkout@v2
  31. # In the checkout@v2, it doesn't support git submodule. Execute the commands manually.
  32. - name: checkout submodules
  33. shell: bash
  34. run: |
  35. git submodule sync --recursive
  36. git -c protocol.version=2 submodule update --init --force --recursive --depth=1
  37. - uses: actions/cache@v1
  38. with:
  39. path: ~/.m2/repository
  40. key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
  41. restore-keys: |
  42. ${{ runner.os }}-maven-
  43. - name: Bootstrap database
  44. run: |
  45. sed -i "s/: root/: test/g" $(pwd)/docker/docker-swarm/docker-compose.yml
  46. docker-compose -f $(pwd)/docker/docker-swarm/docker-compose.yml create --force-recreate dolphinscheduler-zookeeper dolphinscheduler-postgresql
  47. sudo cp $(pwd)/sql/dolphinscheduler-postgre.sql $(docker volume inspect docker-swarm_dolphinscheduler-postgresql-initdb | grep "Mountpoint" | awk -F "\"" '{print $4}')
  48. docker-compose -f $(pwd)/docker/docker-swarm/docker-compose.yml up -d dolphinscheduler-zookeeper dolphinscheduler-postgresql
  49. - name: Set up JDK 1.8
  50. uses: actions/setup-java@v1
  51. with:
  52. java-version: 1.8
  53. - name: Git fetch unshallow
  54. run: |
  55. git fetch --unshallow
  56. git config remote.origin.fetch "+refs/heads/*:refs/remotes/origin/*"
  57. git fetch origin
  58. - name: Compile
  59. run: |
  60. export MAVEN_OPTS='-Dmaven.repo.local=.m2/repository -XX:+TieredCompilation -XX:TieredStopAtLevel=1 -XX:+CMSClassUnloadingEnabled -XX:+UseConcMarkSweepGC -XX:-UseGCOverheadLimit -Xmx5g'
  61. mvn test -B -Dmaven.test.skip=false
  62. - name: Upload coverage report to codecov
  63. run: |
  64. CODECOV_TOKEN="09c2663f-b091-4258-8a47-c981827eb29a" bash <(curl -s https://codecov.io/bash)
  65. - name: Run SonarCloud Analysis
  66. run: >
  67. mvn verify --batch-mode
  68. org.sonarsource.scanner.maven:sonar-maven-plugin:3.6.1.1688:sonar
  69. -Dsonar.coverage.jacoco.xmlReportPaths=target/site/jacoco/jacoco.xml
  70. -Dmaven.test.skip=true
  71. -Dsonar.host.url=https://sonarcloud.io
  72. -Dsonar.organization=apache
  73. -Dsonar.core.codeCoveragePlugin=jacoco
  74. -Dsonar.projectKey=apache-dolphinscheduler
  75. -Dsonar.login=e4058004bc6be89decf558ac819aa1ecbee57682
  76. -Dsonar.exclusions=dolphinscheduler-ui/src/**/i18n/locale/*.js
  77. env:
  78. GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
  79. SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
  80. - name: Collect logs
  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. continue-on-error: true