From 54eab762a8d2cb4a344c8ae76fa0f842dd196627 Mon Sep 17 00:00:00 2001 From: Harsh Shandilya Date: Thu, 8 Dec 2022 18:45:03 +0530 Subject: feat(shadow jobs): prepare for revival - Bump versions - Workaround perma-fail on AGP 8.x - Adjust schedule to be weekly - Report exit state to healthchecks.io --- .github/workflows/shadow_job.yml | 26 +++++++++++++++++++++++--- 1 file changed, 23 insertions(+), 3 deletions(-) diff --git a/.github/workflows/shadow_job.yml b/.github/workflows/shadow_job.yml index a9323af4..ee2c2074 100644 --- a/.github/workflows/shadow_job.yml +++ b/.github/workflows/shadow_job.yml @@ -1,7 +1,7 @@ on: workflow_dispatch: schedule: - - cron: '0 0 * * *' + - cron: '0 12 * * 1' env: SENTRY_DSN: 'https://public_key@example.com/project_id' @@ -14,8 +14,8 @@ jobs: matrix: agp-version: - 7.3.1 - - 7.4.0-beta03 - - 8.0.0-alpha06 + - 7.4.0-rc01 + - 8.0.0-alpha09 gradle-version: - wrapper - nightly @@ -38,6 +38,10 @@ jobs: - 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.0.0') + run: sed -i 's/android.disableAutomaticComponentCreation=true//' gradle.properties + - name: Run checks uses: gradle/gradle-build-action@3fbe033aaae657f011f88f29be9e65ed26bd29ef # v2.3.3 env: @@ -46,3 +50,19 @@ jobs: with: arguments: check gradle-home-cache-cleanup: true + + - name: Report failure to healthchecks.io + if: ${{ failure() }} + env: + HC_PING_SLUG: ${{ secrets.HC_PING_SLUG }} + AGP_VERSION: ${{ matrix.agp-version }} + run: | + curl --retry 3 --data-raw "AGP: ${AGP_VERSION}" "https://hc-ping.com/${HC_PING_SLUG}/fail" + + - name: Report success to healthchecks.io + if: ${{ success() }} + env: + HC_PING_SLUG: ${{ secrets.HC_PING_SLUG }} + AGP_VERSION: ${{ matrix.agp-version }} + run: | + curl --retry 3 --data-raw "AGP: ${AGP_VERSION}" "https://hc-ping.com/${HC_PING_SLUG}" -- cgit v1.2.3