NewPipe/.github/workflows/ci.yml

103 lines
2.8 KiB
YAML
Raw Normal View History

2020-12-09 07:55:57 +01:00
name: CI
2021-03-08 13:15:22 +01:00
on:
workflow_dispatch:
2021-03-08 13:15:22 +01:00
pull_request:
branches:
2021-03-08 13:19:18 +01:00
- dev
- master
paths-ignore:
- 'README*.md'
- 'fastlane/**'
- 'assets/**'
- '.github/**/*.md'
2021-03-08 13:15:22 +01:00
push:
2021-03-21 02:47:19 +01:00
branches:
2021-03-08 13:19:18 +01:00
- dev
- master
paths-ignore:
- 'README*.md'
- 'fastlane/**'
- 'assets/**'
- '.github/**/*.md'
2020-12-09 07:55:57 +01:00
jobs:
2021-01-06 16:32:33 +01:00
build-and-test-jvm:
2020-12-09 07:55:57 +01:00
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
2021-03-21 02:47:19 +01:00
- uses: gradle/wrapper-validation-action@v1
2020-12-09 07:55:57 +01:00
- name: create and checkout branch
# push events already checked out the branch
if: github.event_name == 'pull_request'
run: git checkout -B ${{ github.head_ref }}
2021-08-25 17:05:10 +02:00
- name: set up JDK 11
2021-04-14 17:13:05 +02:00
uses: actions/setup-java@v2
2020-12-09 07:55:57 +01:00
with:
2021-08-25 17:05:10 +02:00
java-version: 11
distribution: "temurin"
cache: 'gradle'
2021-07-28 21:03:51 +02:00
2021-01-06 16:32:33 +01:00
- name: Build debug APK and run jvm tests
run: ./gradlew assembleDebug lintDebug testDebugUnitTest --stacktrace -DskipFormatKtlint
2020-12-09 07:55:57 +01:00
- name: Upload APK
uses: actions/upload-artifact@v2
with:
name: app
path: app/build/outputs/apk/debug/*.apk
2021-01-06 16:32:33 +01:00
test-android:
# macos has hardware acceleration. See android-emulator-runner action
runs-on: macos-latest
strategy:
matrix:
# api-level 19 is min sdk, but throws errors related to desugaring
api-level: [ 21, 29 ]
steps:
- uses: actions/checkout@v2
2021-08-25 17:05:10 +02:00
- name: set up JDK 11
uses: actions/setup-java@v2
with:
2021-08-25 17:05:10 +02:00
java-version: 11
distribution: "temurin"
cache: 'gradle'
- name: Run android tests
uses: reactivecircus/android-emulator-runner@v2
with:
api-level: ${{ matrix.api-level }}
# workaround to emulator bug: https://github.com/ReactiveCircus/android-emulator-runner/issues/160
emulator-build: 7425822
script: ./gradlew connectedCheck
2021-01-06 16:32:33 +01:00
# sonar:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v2
# with:
# fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
# - name: Set up JDK 11
2021-04-14 17:13:05 +02:00
# uses: actions/setup-java@v2
# with:
# java-version: 11 # Sonar requires JDK 11
# distribution: "temurin"
# cache: 'gradle'
# - name: Cache SonarCloud packages
# uses: actions/cache@v2
# with:
# path: ~/.sonar/cache
# key: ${{ runner.os }}-sonar
# restore-keys: ${{ runner.os }}-sonar
# - name: Build and analyze
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
# SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
# run: ./gradlew build sonarqube --info