2020-12-09 06:55:57 +00:00
|
|
|
name: CI
|
|
|
|
|
2021-03-08 12:15:22 +00:00
|
|
|
on:
|
2021-08-04 17:00:15 +00:00
|
|
|
workflow_dispatch:
|
2021-03-08 12:15:22 +00:00
|
|
|
pull_request:
|
|
|
|
branches:
|
2021-03-08 12:19:18 +00:00
|
|
|
- dev
|
2021-06-05 15:34:27 +00:00
|
|
|
- master
|
2022-07-01 21:08:44 +00:00
|
|
|
- release**
|
2021-08-02 13:29:39 +00:00
|
|
|
paths-ignore:
|
2022-02-04 10:13:10 +00:00
|
|
|
- 'README.md'
|
|
|
|
- 'doc/**'
|
2021-08-02 13:29:39 +00:00
|
|
|
- 'fastlane/**'
|
|
|
|
- 'assets/**'
|
|
|
|
- '.github/**/*.md'
|
2022-02-04 10:32:33 +00:00
|
|
|
- '.github/FUNDING.yml'
|
2022-02-12 19:34:08 +00:00
|
|
|
- '.github/ISSUE_TEMPLATE/**'
|
2021-03-08 12:15:22 +00:00
|
|
|
push:
|
2021-03-21 01:47:19 +00:00
|
|
|
branches:
|
2021-03-08 12:19:18 +00:00
|
|
|
- dev
|
2021-03-09 10:21:40 +00:00
|
|
|
- master
|
2021-08-02 13:29:39 +00:00
|
|
|
paths-ignore:
|
2022-02-04 10:13:10 +00:00
|
|
|
- 'README.md'
|
|
|
|
- 'doc/**'
|
2021-08-02 13:29:39 +00:00
|
|
|
- 'fastlane/**'
|
|
|
|
- 'assets/**'
|
|
|
|
- '.github/**/*.md'
|
2022-02-04 10:32:33 +00:00
|
|
|
- '.github/FUNDING.yml'
|
2022-02-12 19:34:08 +00:00
|
|
|
- '.github/ISSUE_TEMPLATE/**'
|
2020-12-09 06:55:57 +00:00
|
|
|
|
|
|
|
jobs:
|
2021-01-06 15:32:33 +00:00
|
|
|
build-and-test-jvm:
|
2020-12-09 06:55:57 +00:00
|
|
|
runs-on: ubuntu-latest
|
2022-07-03 17:38:51 +00:00
|
|
|
|
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
2020-12-09 06:55:57 +00:00
|
|
|
steps:
|
2024-01-08 03:55:57 +00:00
|
|
|
- uses: actions/checkout@v4
|
2024-03-26 21:32:29 +00:00
|
|
|
- uses: gradle/wrapper-validation-action@v2
|
2020-12-09 06:55:57 +00:00
|
|
|
|
2021-01-13 15:18:19 +00:00
|
|
|
- name: create and checkout branch
|
|
|
|
# push events already checked out the branch
|
|
|
|
if: github.event_name == 'pull_request'
|
2023-04-26 14:01:20 +00:00
|
|
|
env:
|
|
|
|
BRANCH: ${{ github.head_ref }}
|
|
|
|
run: git checkout -B "$BRANCH"
|
2021-01-13 15:18:19 +00:00
|
|
|
|
2023-04-20 09:31:45 +00:00
|
|
|
- name: set up JDK 17
|
2024-01-08 03:55:57 +00:00
|
|
|
uses: actions/setup-java@v4
|
2020-12-09 06:55:57 +00:00
|
|
|
with:
|
2023-04-20 09:31:45 +00:00
|
|
|
java-version: 17
|
2021-08-27 13:21:48 +00:00
|
|
|
distribution: "temurin"
|
2021-08-28 13:22:04 +00:00
|
|
|
cache: 'gradle'
|
2021-12-20 15:29:20 +00:00
|
|
|
|
2021-01-06 15:32:33 +00:00
|
|
|
- name: Build debug APK and run jvm tests
|
2021-08-06 16:11:22 +00:00
|
|
|
run: ./gradlew assembleDebug lintDebug testDebugUnitTest --stacktrace -DskipFormatKtlint
|
2020-12-09 06:55:57 +00:00
|
|
|
|
|
|
|
- name: Upload APK
|
2024-01-08 03:55:57 +00:00
|
|
|
uses: actions/upload-artifact@v4
|
2020-12-09 06:55:57 +00:00
|
|
|
with:
|
|
|
|
name: app
|
|
|
|
path: app/build/outputs/apk/debug/*.apk
|
2021-01-06 15:32:33 +00:00
|
|
|
|
2021-07-06 14:24:32 +00:00
|
|
|
test-android:
|
|
|
|
# macos has hardware acceleration. See android-emulator-runner action
|
|
|
|
runs-on: macos-latest
|
2022-01-21 21:15:34 +00:00
|
|
|
timeout-minutes: 20
|
2021-07-06 14:24:32 +00:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2023-04-20 09:31:45 +00:00
|
|
|
include:
|
|
|
|
- api-level: 21
|
|
|
|
target: default
|
|
|
|
arch: x86
|
|
|
|
- api-level: 33
|
|
|
|
target: google_apis # emulator API 33 only exists with Google APIs
|
|
|
|
arch: x86_64
|
2022-07-03 17:38:51 +00:00
|
|
|
|
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
2021-07-06 14:24:32 +00:00
|
|
|
steps:
|
2024-01-08 03:55:57 +00:00
|
|
|
- uses: actions/checkout@v4
|
2021-07-06 14:24:32 +00:00
|
|
|
|
2023-04-20 09:31:45 +00:00
|
|
|
- name: set up JDK 17
|
2024-01-08 03:55:57 +00:00
|
|
|
uses: actions/setup-java@v4
|
2021-07-06 14:24:32 +00:00
|
|
|
with:
|
2023-04-20 09:31:45 +00:00
|
|
|
java-version: 17
|
2021-08-27 13:21:48 +00:00
|
|
|
distribution: "temurin"
|
2021-08-28 13:22:04 +00:00
|
|
|
cache: 'gradle'
|
2021-07-06 14:24:32 +00:00
|
|
|
|
|
|
|
- name: Run android tests
|
|
|
|
uses: reactivecircus/android-emulator-runner@v2
|
|
|
|
with:
|
|
|
|
api-level: ${{ matrix.api-level }}
|
2023-04-20 09:31:45 +00:00
|
|
|
target: ${{ matrix.target }}
|
|
|
|
arch: ${{ matrix.arch }}
|
2021-12-20 15:29:20 +00:00
|
|
|
script: ./gradlew connectedCheck --stacktrace
|
2022-07-03 17:38:51 +00:00
|
|
|
|
2022-01-09 17:09:47 +00:00
|
|
|
- name: Upload test report when tests fail # because the printed out stacktrace (console) is too short, see also #7553
|
2024-01-08 03:55:57 +00:00
|
|
|
uses: actions/upload-artifact@v4
|
2022-01-09 17:09:47 +00:00
|
|
|
if: failure()
|
|
|
|
with:
|
|
|
|
name: android-test-report-api${{ matrix.api-level }}
|
|
|
|
path: app/build/reports/androidTests/connected/**
|
2021-01-06 15:32:33 +00:00
|
|
|
|
2021-12-19 11:18:37 +00:00
|
|
|
sonar:
|
|
|
|
runs-on: ubuntu-latest
|
2022-07-03 17:38:51 +00:00
|
|
|
|
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
2021-12-19 11:18:37 +00:00
|
|
|
steps:
|
2024-01-08 03:55:57 +00:00
|
|
|
- uses: actions/checkout@v4
|
2021-12-19 11:18:37 +00:00
|
|
|
with:
|
|
|
|
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
|
2021-03-15 08:51:51 +00:00
|
|
|
|
2023-04-20 09:31:45 +00:00
|
|
|
- name: Set up JDK 17
|
2024-01-08 03:55:57 +00:00
|
|
|
uses: actions/setup-java@v4
|
2021-12-19 11:18:37 +00:00
|
|
|
with:
|
2023-04-20 09:31:45 +00:00
|
|
|
java-version: 17
|
2021-12-19 11:18:37 +00:00
|
|
|
distribution: "temurin"
|
|
|
|
cache: 'gradle'
|
2021-03-15 08:51:51 +00:00
|
|
|
|
2021-12-19 11:18:37 +00:00
|
|
|
- name: Cache SonarCloud packages
|
2022-04-14 19:43:56 +00:00
|
|
|
uses: actions/cache@v3
|
2021-12-19 11:18:37 +00:00
|
|
|
with:
|
|
|
|
path: ~/.sonar/cache
|
|
|
|
key: ${{ runner.os }}-sonar
|
|
|
|
restore-keys: ${{ runner.os }}-sonar
|
2021-03-15 08:51:51 +00:00
|
|
|
|
2021-12-19 11:18:37 +00:00
|
|
|
- name: Build and analyze
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
|
|
|
|
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
|
2022-11-29 16:20:31 +00:00
|
|
|
run: ./gradlew build sonar --info
|