2022-05-25 12:29:04 +00:00
|
|
|
on:
|
|
|
|
workflow_dispatch:
|
|
|
|
schedule:
|
2022-12-08 13:15:03 +00:00
|
|
|
- cron: '0 12 * * 1'
|
2022-05-25 12:29:04 +00:00
|
|
|
|
|
|
|
env:
|
|
|
|
SENTRY_DSN: 'https://public_key@example.com/project_id'
|
|
|
|
|
2022-12-22 06:02:27 +00:00
|
|
|
name: Shadow job
|
2022-05-25 12:29:04 +00:00
|
|
|
jobs:
|
2023-03-23 07:24:57 +00:00
|
|
|
provide-agp-version-matrix:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
outputs:
|
|
|
|
agp-versions: ${{ steps.build-agp-matrix.outputs.agp-versions }}
|
|
|
|
steps:
|
|
|
|
- id: agp-version-finder
|
2023-03-23 08:07:37 +00:00
|
|
|
uses: usefulness/agp-version-finder-action@90844048a634a3fef57d3deba3cfe697f6fb001e # v1
|
2023-03-23 07:24:57 +00:00
|
|
|
- id: build-agp-matrix
|
|
|
|
run: echo 'agp-versions=["${{ steps.agp-version-finder.outputs.latest-stable }}", "${{ steps.agp-version-finder.outputs.latest-beta }}","${{ steps.agp-version-finder.outputs.latest-alpha }}"]' >> $GITHUB_OUTPUT
|
|
|
|
|
2022-05-25 12:29:04 +00:00
|
|
|
shadow-job:
|
2023-03-23 07:24:57 +00:00
|
|
|
needs: [provide-agp-versions]
|
2022-05-25 12:29:04 +00:00
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
2023-03-23 07:24:57 +00:00
|
|
|
agp-version: ${{ fromJSON(needs.provide-agp-version-matrix.outputs.agp-versions) }}
|
2022-05-25 12:29:04 +00:00
|
|
|
gradle-version:
|
|
|
|
- wrapper
|
2023-01-31 10:00:28 +00:00
|
|
|
- release-nightly
|
2022-05-25 12:29:04 +00:00
|
|
|
- nightly
|
|
|
|
java-version:
|
|
|
|
- 18
|
|
|
|
runs-on: ubuntu-latest
|
2023-03-23 07:24:57 +00:00
|
|
|
name: Run Gradle-${{ matrix.gradle-version }}, AGP-${{ matrix.agp-version }}, Java-${{ matrix.java-version }}
|
2022-05-25 12:29:04 +00:00
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
2023-03-16 02:32:00 +00:00
|
|
|
uses: actions/checkout@24cb9080177205b6e8c946b17badbe402adc938f # v3.4.0
|
2022-05-25 12:29:04 +00:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
|
|
|
|
- name: Set up JDK
|
2023-02-08 04:15:23 +00:00
|
|
|
uses: actions/setup-java@3f07048e3d294f56e9b90ac5ea2c6f74e9ad0f98 # v3.10.0
|
2022-05-25 12:29:04 +00:00
|
|
|
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
|
|
|
|
|
2023-01-13 09:24:28 +00:00
|
|
|
- name: Workaround AGP 8.x deprecations
|
2023-01-26 05:54:29 +00:00
|
|
|
if: startsWith(matrix.agp-version, '8.')
|
2023-01-13 09:24:28 +00:00
|
|
|
run: sed -i 's/android.disableAutomaticComponentCreation=true//' gradle.properties
|
|
|
|
|
2022-05-25 12:29:04 +00:00
|
|
|
- name: Run checks
|
2023-02-19 01:18:39 +00:00
|
|
|
uses: gradle/gradle-build-action@6095a76664413da4c8c134ee32e8a8ae900f0f1f # v2.4.0
|
2022-05-25 12:29:04 +00:00
|
|
|
env:
|
2022-06-12 11:01:42 +00:00
|
|
|
DEP_OVERRIDE: true
|
|
|
|
DEP_OVERRIDE_agp: ${{ matrix.agp-version }}
|
2022-05-25 12:29:04 +00:00
|
|
|
with:
|
2022-06-10 17:57:56 +00:00
|
|
|
arguments: check
|
2022-08-30 16:38:46 +00:00
|
|
|
gradle-home-cache-cleanup: true
|
2023-03-19 13:12:20 +00:00
|
|
|
cache-read-only: true
|
2022-12-08 13:15:03 +00:00
|
|
|
|
2023-02-28 06:16:41 +00:00
|
|
|
results:
|
|
|
|
if: ${{ always() }}
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
name: Final Results
|
|
|
|
needs: [shadow-job]
|
|
|
|
steps:
|
2022-12-08 13:15:03 +00:00
|
|
|
- name: Report failure to healthchecks.io
|
2023-02-28 06:16:41 +00:00
|
|
|
# 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"
|
2022-12-08 13:15:03 +00:00
|
|
|
env:
|
|
|
|
HC_PING_SLUG: ${{ secrets.HC_PING_SLUG }}
|
|
|
|
|
|
|
|
- name: Report success to healthchecks.io
|
2023-02-28 06:16:41 +00:00
|
|
|
if: ${{ contains(needs.*.result, 'success') }}
|
2022-12-08 13:15:03 +00:00
|
|
|
env:
|
|
|
|
HC_PING_SLUG: ${{ secrets.HC_PING_SLUG }}
|
2023-02-28 06:16:41 +00:00
|
|
|
run: curl --retry 3 "https://hc-ping.com/${HC_PING_SLUG}"
|