72 lines
2.1 KiB
YAML
72 lines
2.1 KiB
YAML
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
- cron: '0 12 * * 1'
|
|
|
|
env:
|
|
SENTRY_DSN: 'https://public_key@example.com/project_id'
|
|
|
|
name: Shadow job
|
|
jobs:
|
|
shadow-job:
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
agp-version:
|
|
- 7.4.2
|
|
- 8.0.0-beta03
|
|
- 8.1.0-alpha07
|
|
gradle-version:
|
|
- current
|
|
- wrapper
|
|
- release-nightly
|
|
- nightly
|
|
java-version:
|
|
- 18
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Set up JDK
|
|
uses: actions/setup-java@3f07048e3d294f56e9b90ac5ea2c6f74e9ad0f98 # v3.10.0
|
|
with:
|
|
distribution: temurin
|
|
java-version: ${{ matrix.java-version }}
|
|
|
|
- name: Copy CI gradle.properties
|
|
run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties
|
|
|
|
- name: Workaround AGP 8.x deprecations
|
|
if: startsWith(matrix.agp-version, '8.')
|
|
run: sed -i 's/android.disableAutomaticComponentCreation=true//' gradle.properties
|
|
|
|
- name: Run checks
|
|
uses: gradle/gradle-build-action@6095a76664413da4c8c134ee32e8a8ae900f0f1f # v2.4.0
|
|
env:
|
|
DEP_OVERRIDE: true
|
|
DEP_OVERRIDE_agp: ${{ matrix.agp-version }}
|
|
with:
|
|
arguments: check
|
|
gradle-home-cache-cleanup: true
|
|
|
|
results:
|
|
if: ${{ always() }}
|
|
runs-on: ubuntu-latest
|
|
name: Final Results
|
|
needs: [shadow-job]
|
|
steps:
|
|
- name: Report failure to healthchecks.io
|
|
# see https://stackoverflow.com/a/67532120/4907315
|
|
if: ${{ contains(needs.*.result, 'failure') || contains(needs.*.result, 'cancelled') }}
|
|
run: curl --retry 3 "https://hc-ping.com/${HC_PING_SLUG}/fail"
|
|
env:
|
|
HC_PING_SLUG: ${{ secrets.HC_PING_SLUG }}
|
|
|
|
- name: Report success to healthchecks.io
|
|
if: ${{ contains(needs.*.result, 'success') }}
|
|
env:
|
|
HC_PING_SLUG: ${{ secrets.HC_PING_SLUG }}
|
|
run: curl --retry 3 "https://hc-ping.com/${HC_PING_SLUG}"
|