commit
e2bc9dfacd
|
@ -40,34 +40,34 @@ jobs:
|
||||||
with:
|
with:
|
||||||
name: app
|
name: app
|
||||||
path: app/build/outputs/apk/debug/*.apk
|
path: app/build/outputs/apk/debug/*.apk
|
||||||
sonar:
|
# sonar:
|
||||||
runs-on: ubuntu-latest
|
# runs-on: ubuntu-latest
|
||||||
steps:
|
# steps:
|
||||||
- uses: actions/checkout@v2
|
# - uses: actions/checkout@v2
|
||||||
with:
|
# with:
|
||||||
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
|
# fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
|
||||||
|
|
||||||
- name: Set up JDK 11
|
# - name: Set up JDK 11
|
||||||
uses: actions/setup-java@v1.4.3
|
# uses: actions/setup-java@v1.4.3
|
||||||
with:
|
# with:
|
||||||
java-version: 11 # Sonar requires JDK 11
|
# java-version: 11 # Sonar requires JDK 11
|
||||||
|
|
||||||
- name: Cache SonarCloud packages
|
# - name: Cache SonarCloud packages
|
||||||
uses: actions/cache@v2
|
# uses: actions/cache@v2
|
||||||
with:
|
# with:
|
||||||
path: ~/.sonar/cache
|
# path: ~/.sonar/cache
|
||||||
key: ${{ runner.os }}-sonar
|
# key: ${{ runner.os }}-sonar
|
||||||
restore-keys: ${{ runner.os }}-sonar
|
# restore-keys: ${{ runner.os }}-sonar
|
||||||
|
|
||||||
- name: Cache Gradle packages
|
# - name: Cache Gradle packages
|
||||||
uses: actions/cache@v2
|
# uses: actions/cache@v2
|
||||||
with:
|
# with:
|
||||||
path: ~/.gradle/caches
|
# path: ~/.gradle/caches
|
||||||
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
|
# key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
|
||||||
restore-keys: ${{ runner.os }}-gradle
|
# restore-keys: ${{ runner.os }}-gradle
|
||||||
|
|
||||||
- name: Build and analyze
|
# - name: Build and analyze
|
||||||
env:
|
# env:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
|
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
|
||||||
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
|
# SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
|
||||||
run: ./gradlew build sonarqube --info
|
# run: ./gradlew build sonarqube --info
|
||||||
|
|
Loading…
Reference in New Issue