diff options
author | Harsh Shandilya <me@msfjarvis.dev> | 2022-12-08 18:45:03 +0530 |
---|---|---|
committer | Harsh Shandilya <me@msfjarvis.dev> | 2022-12-08 18:51:15 +0530 |
commit | 54eab762a8d2cb4a344c8ae76fa0f842dd196627 (patch) | |
tree | 44447c1a41fcdc6271f55e2e5c38aa970f6d7357 /.github | |
parent | 521389db018deee2e7bd59efb14e2059a42f1cd9 (diff) |
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
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/shadow_job.yml | 26 |
1 files 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}" |