未验证 提交 bd1d1a67 编写于 作者: H Haonan 提交者: GitHub

Revert "Enable sonar-coveralls for pr from fork repos (#3263)" (#3266)

This reverts commit aca9faa9.
上级 aca9faa9
# This workflow will build a Java project with Maven
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: Sonar-Coveralls
name: Sonar-Coveralls(Ignore this on folk Repos)
on:
push:
......@@ -10,7 +10,7 @@ on:
- "rel/*"
paths-ignore:
- "docs/**"
pull_request_target:
pull_request:
branches:
- master
- "rel/*"
......@@ -43,7 +43,7 @@ jobs:
# we do not compile client-cpp for saving time, it is tested in client.yml
run: mvn -B clean post-integration-test -Dtest.port.closed=true -Pcode-coverage
- name: Code Coverage (Coveralls)
if: ${{ success() }}
if: ${{ success() && (github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == 'apache/iotdb' || github.event_name == 'push') }}
run: |
mvn -B post-integration-test -Pcode-coverage -pl code-coverage
mvn -B coveralls:report \
......@@ -53,7 +53,7 @@ jobs:
-DrepoToken=${{ secrets.COVERALL_TOKEN }} \
-Pcode-coverage
- name: SonarCloud Report
if: ${{ success() }}
if: ${{ success() && (github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == 'apache/iotdb' || github.event_name == 'push') }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONARCLOUD_TOKEN }}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册