This is an automated email from the ASF dual-hosted git repository.
shashikant pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-ratis.git
The following commit(s) were added to refs/heads/master by this push:
new 87bd1fd RATIS-1311. Upgrade Java for Sonar check (#419)
87bd1fd is described below
commit 87bd1fd1df9f02e83b973291d507ad002bd9d3f4
Author: Doroszlai, Attila <[email protected]>
AuthorDate: Wed Feb 17 08:19:35 2021 +0100
RATIS-1311. Upgrade Java for Sonar check (#419)
---
.github/workflows/post-commit.yml | 30 +++++++++++++++++++++++++-----
1 file changed, 25 insertions(+), 5 deletions(-)
diff --git a/.github/workflows/post-commit.yml
b/.github/workflows/post-commit.yml
index e1a2f44..9155854 100644
--- a/.github/workflows/post-commit.yml
+++ b/.github/workflows/post-commit.yml
@@ -90,11 +90,6 @@ jobs:
restore-keys: |
maven-repo-${{ hashFiles('**/pom.xml') }}
maven-repo-
- - run: ./dev-support/checks/sonar.sh
- if: github.repository == 'apache/incubator-ratis' &&
github.event_name != 'pull_request'
- env:
- SONAR_TOKEN: ${{ secrets.SONARCLOUD_TOKEN }}
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- run: ./dev-support/checks/unit.sh
- name: Summary of failures
run: cat target/${{ github.job }}/summary.txt
@@ -151,3 +146,28 @@ jobs:
- name: Delete temporary build artifacts
run: rm -rf ~/.m2/repository/org/apache/ratis
if: always()
+ sonar:
+ name: sonar
+ runs-on: ubuntu-18.04
+ if: github.repository == 'apache/incubator-ratis' && github.event_name !=
'pull_request'
+ steps:
+ - uses: actions/checkout@master
+ - name: Cache for maven dependencies
+ uses: actions/cache@v2
+ with:
+ path: ~/.m2/repository
+ key: maven-repo-${{ hashFiles('**/pom.xml') }}-${{ github.job }}
+ restore-keys: |
+ maven-repo-${{ hashFiles('**/pom.xml') }}
+ maven-repo-
+ - name: Setup java 11
+ uses: actions/setup-java@v1
+ with:
+ java-version: 11
+ - run: ./dev-support/checks/sonar.sh
+ env:
+ SONAR_TOKEN: ${{ secrets.SONARCLOUD_TOKEN }}
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+ - name: Delete temporary build artifacts
+ run: rm -rf ~/.m2/repository/org/apache/ratis
+ if: always()