aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/shadow_job.yml
blob: 7e1fb5dbeda6c1e0b6b28ed1c5e42486a00947ed (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
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.0
          - 8.0.0-beta01
          - 8.1.0-alpha02
        gradle-version:
          - current
          - wrapper
          - release-nightly
          - nightly
        java-version:
          - 18
        # Gradle 8.x is currently incompatible with AGP 8.x
        exclude:
          - agp-version: 8.0.0-beta01
          - agp-version: 8.1.0-alpha02
    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@1df8dbefe2a8cbc99770194893dd902763bee34b # v3.9.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@3fbe033aaae657f011f88f29be9e65ed26bd29ef # v2.3.3
      env:
        DEP_OVERRIDE: true
        DEP_OVERRIDE_agp: ${{ matrix.agp-version }}
      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}"