Back to development versions #25
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: Build & test | |
on: | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- '**.md' | |
pull_request: | |
paths-ignore: | |
- '**.md' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
timeout-minutes: 45 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Copy CI gradle.properties | |
run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties | |
- name: Setup java | |
uses: actions/setup-java@v3 | |
with: | |
distribution: temurin | |
java-version: 17 | |
- name: Decrypt secrets | |
run: release/signing-setup.sh ${{ secrets.ENCRYPT_KEY }} | |
- name: Setup Gradle | |
uses: gradle/gradle-build-action@v2 | |
with: | |
gradle-home-cache-cleanup: true | |
- name: Build, lint and spotless | |
run: | | |
./gradlew --scan --stacktrace \ | |
spotlessCheck \ | |
assemble \ | |
metalavaCheckCompatibilityRelease \ | |
lintDebug | |
- name: Clean secrets | |
if: always() | |
run: release/signing-cleanup.sh | |
test: | |
needs: build | |
runs-on: macos-latest | |
timeout-minutes: 70 | |
strategy: | |
# Allow tests to continue on other devices if they fail on one device. | |
fail-fast: false | |
matrix: | |
api-level: [ 22, 26, 29 ] | |
env: | |
TERM: dumb | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Copy CI gradle.properties | |
run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties | |
- name: Setup java | |
uses: actions/setup-java@v3 | |
with: | |
distribution: temurin | |
java-version: 17 | |
- name: Decrypt secrets | |
run: release/signing-setup.sh ${{ secrets.ENCRYPT_KEY }} | |
- name: Setup Gradle | |
uses: gradle/gradle-build-action@v2 | |
with: | |
gradle-home-cache-cleanup: true | |
- name: Build tests | |
run: ./gradlew assembleDebugAndroidTest --scan | |
- name: Run tests | |
uses: reactivecircus/android-emulator-runner@v2 | |
with: | |
api-level: ${{ matrix.api-level }} | |
profile: Nexus 5X | |
script: | | |
adb logcat > logcat.txt & | |
./gradlew --scan connectedCheck | |
- name: Clean secrets | |
if: always() | |
run: release/signing-cleanup.sh | |
- name: Upload logs | |
if: always() | |
uses: actions/upload-artifact@v3 | |
with: | |
name: logs-${{ matrix.api-level }} | |
path: logcat.txt | |
- name: Upload test results | |
if: always() | |
uses: actions/upload-artifact@v3 | |
with: | |
name: test-results-${{ matrix.api-level }} | |
path: "**/build/outputs/*/connected/*.xml" | |
deploy: | |
if: github.event_name == 'push' | |
runs-on: ubuntu-latest | |
needs: [ build, test ] | |
timeout-minutes: 30 | |
env: | |
TERM: dumb | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Copy CI gradle.properties | |
run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties | |
- name: Setup java | |
uses: actions/setup-java@v3 | |
with: | |
distribution: temurin | |
java-version: 17 | |
- name: Decrypt secrets | |
run: release/signing-setup.sh ${{ secrets.ENCRYPT_KEY }} | |
- name: Setup Gradle | |
uses: gradle/gradle-build-action@v2 | |
with: | |
gradle-home-cache-cleanup: true | |
- name: Deploy to Sonatype | |
run: ./gradlew publish --no-parallel --stacktrace --no-configuration-cache | |
env: | |
ORG_GRADLE_PROJECT_mavenCentralUsername: ${{ secrets.SONATYPE_NEXUS_USERNAME }} | |
ORG_GRADLE_PROJECT_mavenCentralPassword: ${{ secrets.SONATYPE_NEXUS_PASSWORD }} | |
- name: Clean secrets | |
if: always() | |
run: release/signing-cleanup.sh |