ci_ut.yml 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  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. with:
  32. submodule: true
  33. - name: Check License Header
  34. uses: apache/skywalking-eyes@9bd5feb
  35. env:
  36. GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Only enable review / suggestion here
  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. # Set up JDK 11 for SonarCloud.
  66. - name: Set up JDK 1.11
  67. uses: actions/setup-java@v1
  68. with:
  69. java-version: 1.11
  70. - name: Run SonarCloud Analysis
  71. run: >
  72. mvn --batch-mode verify sonar:sonar
  73. -Dsonar.coverage.jacoco.xmlReportPaths=target/site/jacoco/jacoco.xml
  74. -Dmaven.test.skip=true
  75. -Dsonar.host.url=https://sonarcloud.io
  76. -Dsonar.organization=apache
  77. -Dsonar.core.codeCoveragePlugin=jacoco
  78. -Dsonar.projectKey=apache-dolphinscheduler
  79. -Dsonar.login=e4058004bc6be89decf558ac819aa1ecbee57682
  80. -Dsonar.exclusions=dolphinscheduler-ui/src/**/i18n/locale/*.js,dolphinscheduler-microbench/src/**/*
  81. env:
  82. GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
  83. SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
  84. - name: Collect logs
  85. run: |
  86. mkdir -p ${LOG_DIR}
  87. docker-compose -f $(pwd)/docker/docker-swarm/docker-compose.yml logs dolphinscheduler-postgresql > ${LOG_DIR}/db.txt
  88. continue-on-error: true
  89. Checkstyle:
  90. name: Check code style
  91. runs-on: ubuntu-latest
  92. steps:
  93. - name: Checkout
  94. uses: actions/checkout@v2
  95. with:
  96. submodule: true
  97. - name: check code style
  98. env:
  99. WORKDIR: ./
  100. REVIEWDOG_GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }}
  101. CHECKSTYLE_CONFIG: style/checkstyle.xml
  102. REVIEWDOG_VERSION: v0.10.2
  103. run: |
  104. wget -O - -q https://github.com/checkstyle/checkstyle/releases/download/checkstyle-8.22/checkstyle-8.22-all.jar > /opt/checkstyle.jar
  105. wget -O - -q https://raw.githubusercontent.com/reviewdog/reviewdog/master/install.sh | sh -s -- -b /opt ${REVIEWDOG_VERSION}
  106. java -jar /opt/checkstyle.jar "${WORKDIR}" -c "${CHECKSTYLE_CONFIG}" -f xml \
  107. | /opt/reviewdog -f=checkstyle \
  108. -reporter="${INPUT_REPORTER:-github-pr-check}" \
  109. -filter-mode="${INPUT_FILTER_MODE:-added}" \
  110. -fail-on-error="${INPUT_FAIL_ON_ERROR:-false}"