Prepare for next development iteration #210
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Android CI | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
validation: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: gradle/wrapper-validation-action@v1 | |
checks: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-java@v3 | |
with: | |
java-version: 8 | |
distribution: 'zulu' | |
- uses: gradle/gradle-build-action@v2 | |
- name: Build project | |
run: ./gradlew build --stacktrace | |
instrumentation-tests: | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
strategy: | |
# Allow tests to continue on other devices if they fail on one device. | |
fail-fast: false | |
matrix: | |
api-level: | |
- 21 | |
- 22 | |
- 23 | |
- 24 | |
- 25 | |
- 26 | |
# - 27 has 'default;x86_64' and 'google_apis;x86' but not 'google_apis;x86_64' so we're setting it up as a one-off with x86 below. | |
- 28 | |
- 29 | |
- 30 | |
# No tests found, process crashed | |
# - 31 | |
# No tests found, process crashed | |
# - 32 | |
# No tests found, process crashed | |
# - 33 | |
# Disabled 34: needs min target SDK 23, and upgrading AGP. | |
# - 34 | |
arch: [ x86_64 ] | |
target: [ google_apis ] | |
channel: [ stable ] | |
include: | |
- arch: x86 | |
api-level: 27 | |
target: google_apis | |
channel: stable | |
steps: | |
- name: Enable KVM group perms | |
run: | | |
echo 'KERNEL=="kvm", GROUP="kvm", MODE="0666", OPTIONS+="static_node=kvm"' | sudo tee /etc/udev/rules.d/99-kvm4all.rules | |
sudo udevadm control --reload-rules | |
sudo udevadm trigger --name-match=kvm | |
ls /dev/kvm | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
java-version: 11 | |
distribution: 'zulu' | |
- uses: gradle/gradle-build-action@v2 | |
- name: Instrumentation Tests | |
uses: reactivecircus/android-emulator-runner@v2 | |
with: | |
api-level: ${{ matrix.api-level }} | |
# Disabled AVD caching and forcing AVD creation to avoid running into https://github.com/ReactiveCircus/android-emulator-runner/issues/385 | |
force-avd-creation: true | |
target: ${{ matrix.target }} | |
arch: ${{ matrix.arch }} | |
emulator-options: -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -no-metrics -camera-back none -no-snapshot-save | |
script: | | |
touch emulator.log # create log file | |
chmod 777 emulator.log # allow writing to log file | |
adb logcat >> emulator.log & # pipe all logcat messages into log file as a background process | |
adb shell settings put global package_verifier_user_consent -1 | |
./gradlew connectedCheck --no-build-cache --no-daemon --stacktrace | |
- name: Upload results | |
if: ${{ always() }} | |
uses: actions/upload-artifact@v3 | |
with: | |
name: ${{ matrix.api-level }}-${{ matrix.arch }}-instrumentation-test-results | |
path: | | |
emulator.log | |
./**/build/reports/androidTests/connected/** | |
snapshot-deployment: | |
if: github.repository == 'square/papa' && github.event_name == 'push' | |
needs: [ checks ] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-java@v3 | |
with: | |
java-version: 8 | |
distribution: 'zulu' | |
- uses: gradle/gradle-build-action@v2 | |
- name: Deploy snapshot | |
run: ./gradlew publish | |
env: | |
ORG_GRADLE_PROJECT_mavenCentralUsername: ${{ secrets.SONATYPE_NEXUS_USERNAME }} | |
ORG_GRADLE_PROJECT_mavenCentralPassword: ${{ secrets.SONATYPE_NEXUS_PASSWORD }} | |
- name: Cleanup secrets | |
if: always() | |
run: rm -rf ~/.gradle/gradle.properties |