-
Notifications
You must be signed in to change notification settings - Fork 52
54 lines (54 loc) · 1.85 KB
/
android-build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
name: Android Build
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened]
release:
types: [created]
jobs:
build:
name: Build and analyze
runs-on: ubuntu-latest
defaults:
run:
working-directory: android-src/KV4PHT
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: 17
distribution: 'zulu' # Alternative distribution options are available
- name: Cache SonarCloud packages
uses: actions/cache@v4
with:
path: ~/.sonar/cache
key: ${{ runner.os }}-sonar
restore-keys: ${{ runner.os }}-sonar
- name: Cache Gradle packages
uses: actions/cache@v4
with:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
restore-keys: ${{ runner.os }}-gradle
- name: Grant execute permission for gradlew
run: chmod +x ./gradlew
- name: Gradle Check
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
run: ./gradlew check -x lint --stacktrace
- name: 'Gradle Build'
run: ./gradlew build -x lint --stacktrace
- name: Upload APK
if: startsWith(github.ref, 'refs/tags')
uses: AButler/[email protected]
with:
files: "android-src/KV4PHT/app/build/outputs/apk/release/app-release-unsigned.apk;android-src/KV4PHT/app/build/outputs/apk/debug/app-debug.apk"
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: 'Prepare Sonar analysis'
uses: evaristegalois11/[email protected]