diff options
author | Harsh Shandilya <me@msfjarvis.dev> | 2023-05-28 03:41:27 +0530 |
---|---|---|
committer | Harsh Shandilya <me@msfjarvis.dev> | 2023-05-28 03:41:27 +0530 |
commit | a8b3e609dea73426adc62ca63134ad2b2272596d (patch) | |
tree | c2de6f4ed2f9c1c89a01a2a8a4c4c1ccaaa53010 /.github/workflows | |
parent | 9838801ed3a0fb83368ede8166e38a38d056f618 (diff) |
fix(ci): manually cache Android SDK build-tools
Without this all CI steps run extra slowly
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/codeql_analysis.yml | 19 | ||||
-rw-r--r-- | .github/workflows/deploy_github_releases.yml | 19 | ||||
-rw-r--r-- | .github/workflows/deploy_library_releases.yml | 19 | ||||
-rw-r--r-- | .github/workflows/deploy_snapshot.yml | 19 | ||||
-rw-r--r-- | .github/workflows/draft_new_release.yml | 19 | ||||
-rw-r--r-- | .github/workflows/pull_request.yml | 114 | ||||
-rw-r--r-- | .github/workflows/shadow_job.yml | 15 | ||||
-rw-r--r-- | .github/workflows/sync_crowdin.yml | 19 | ||||
-rw-r--r-- | .github/workflows/update_publicsuffix_data.yml | 19 |
9 files changed, 210 insertions, 52 deletions
diff --git a/.github/workflows/codeql_analysis.yml b/.github/workflows/codeql_analysis.yml index c3faab88..121bf15c 100644 --- a/.github/workflows/codeql_analysis.yml +++ b/.github/workflows/codeql_analysis.yml @@ -24,6 +24,21 @@ jobs: - name: Checkout repository uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2 + - name: Accept all SDK licenses + shell: bash + run: printf 'y\ny\ny\ny\ny\ny\n' | $ANDROID_HOME/tools/bin/sdkmanager --licenses + + - name: Get build-tools directory + id: build-tools-path + shell: bash + run: echo "dir=${ANDROID_HOME}/build-tools/34.0.0-rc3" >> "${GITHUB_OUTPUT}" + + - name: Cache build-tools + uses: actions/cache@v3 + with: + path: ${{ steps.build-tools-path.outputs.dir }} + key: ${{ runner.os }}-34.0.0-rc3 + - name: Set up JDK uses: actions/setup-java@5ffc13f4174014e2d4d4572b3d74c3fa61aeb2c2 # v3.11.0 with: @@ -37,10 +52,6 @@ jobs: tools: latest queries: +security-extended - - name: Accept all SDK licenses - shell: bash - run: printf 'y\ny\ny\ny\ny\n' | $ANDROID_HOME/tools/bin/sdkmanager --licenses - - name: Build project uses: gradle/gradle-build-action@749f47bda3e44aa060e82d7b3ef7e40d953bd629 # v2.4.2 with: diff --git a/.github/workflows/deploy_github_releases.yml b/.github/workflows/deploy_github_releases.yml index c06f28ce..136c00c5 100644 --- a/.github/workflows/deploy_github_releases.yml +++ b/.github/workflows/deploy_github_releases.yml @@ -12,6 +12,21 @@ jobs: - name: Checkout repository uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2 + - name: Accept all SDK licenses + shell: bash + run: printf 'y\ny\ny\ny\ny\ny\n' | $ANDROID_HOME/tools/bin/sdkmanager --licenses + + - name: Get build-tools directory + id: build-tools-path + shell: bash + run: echo "dir=${ANDROID_HOME}/build-tools/34.0.0-rc3" >> "${GITHUB_OUTPUT}" + + - name: Cache build-tools + uses: actions/cache@v3 + with: + path: ${{ steps.build-tools-path.outputs.dir }} + key: ${{ runner.os }}-34.0.0-rc3 + - name: Set up JDK uses: actions/setup-java@5ffc13f4174014e2d4d4572b3d74c3fa61aeb2c2 # v3.11.0 with: @@ -26,10 +41,6 @@ jobs: - name: Copy CI gradle.properties run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties - - name: Accept all SDK licenses - shell: bash - run: printf 'y\ny\ny\ny\ny\n' | $ANDROID_HOME/tools/bin/sdkmanager --licenses - - name: Build release binaries uses: gradle/gradle-build-action@749f47bda3e44aa060e82d7b3ef7e40d953bd629 # v2.4.2 with: diff --git a/.github/workflows/deploy_library_releases.yml b/.github/workflows/deploy_library_releases.yml index 4357e344..5afd731b 100644 --- a/.github/workflows/deploy_library_releases.yml +++ b/.github/workflows/deploy_library_releases.yml @@ -11,16 +11,27 @@ jobs: - name: Checkout repository uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2 + - name: Accept all SDK licenses + shell: bash + run: printf 'y\ny\ny\ny\ny\ny\n' | $ANDROID_HOME/tools/bin/sdkmanager --licenses + + - name: Get build-tools directory + id: build-tools-path + shell: bash + run: echo "dir=${ANDROID_HOME}/build-tools/34.0.0-rc3" >> "${GITHUB_OUTPUT}" + + - name: Cache build-tools + uses: actions/cache@v3 + with: + path: ${{ steps.build-tools-path.outputs.dir }} + key: ${{ runner.os }}-34.0.0-rc3 + - name: Set up JDK uses: actions/setup-java@5ffc13f4174014e2d4d4572b3d74c3fa61aeb2c2 # v3.11.0 with: distribution: temurin java-version: 18 - - name: Accept all SDK licenses - shell: bash - run: printf 'y\ny\ny\ny\ny\n' | $ANDROID_HOME/tools/bin/sdkmanager --licenses - - name: Upload binaries uses: gradle/gradle-build-action@749f47bda3e44aa060e82d7b3ef7e40d953bd629 # v2.4.2 with: diff --git a/.github/workflows/deploy_snapshot.yml b/.github/workflows/deploy_snapshot.yml index 6fcf49fc..1de0e67e 100644 --- a/.github/workflows/deploy_snapshot.yml +++ b/.github/workflows/deploy_snapshot.yml @@ -23,6 +23,21 @@ jobs: with: fetch-depth: 0 + - name: Accept all SDK licenses + shell: bash + run: printf 'y\ny\ny\ny\ny\ny\n' | $ANDROID_HOME/tools/bin/sdkmanager --licenses + + - name: Get build-tools directory + id: build-tools-path + shell: bash + run: echo "dir=${ANDROID_HOME}/build-tools/34.0.0-rc3" >> "${GITHUB_OUTPUT}" + + - name: Cache build-tools + uses: actions/cache@v3 + with: + path: ${{ steps.build-tools-path.outputs.dir }} + key: ${{ runner.os }}-34.0.0-rc3 + - name: Set up JDK uses: actions/setup-java@5ffc13f4174014e2d4d4572b3d74c3fa61aeb2c2 # v3.11.0 with: @@ -37,10 +52,6 @@ jobs: - name: Copy CI gradle.properties run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties - - name: Accept all SDK licenses - shell: bash - run: printf 'y\ny\ny\ny\ny\n' | $ANDROID_HOME/tools/bin/sdkmanager --licenses - - name: Build release app uses: gradle/gradle-build-action@749f47bda3e44aa060e82d7b3ef7e40d953bd629 # v2.4.2 env: diff --git a/.github/workflows/draft_new_release.yml b/.github/workflows/draft_new_release.yml index a0de05f2..c068a144 100644 --- a/.github/workflows/draft_new_release.yml +++ b/.github/workflows/draft_new_release.yml @@ -36,6 +36,21 @@ jobs: with: ref: ${{ env.CHECKOUT_REF }} + - name: Accept all SDK licenses + shell: bash + run: printf 'y\ny\ny\ny\ny\ny\n' | $ANDROID_HOME/tools/bin/sdkmanager --licenses + + - name: Get build-tools directory + id: build-tools-path + shell: bash + run: echo "dir=${ANDROID_HOME}/build-tools/34.0.0-rc3" >> "${GITHUB_OUTPUT}" + + - name: Cache build-tools + uses: actions/cache@v3 + with: + path: ${{ steps.build-tools-path.outputs.dir }} + key: ${{ runner.os }}-34.0.0-rc3 + - name: Set up JDK uses: actions/setup-java@5ffc13f4174014e2d4d4572b3d74c3fa61aeb2c2 # v3.11.0 with: @@ -52,10 +67,6 @@ jobs: with: gradle-home-cache-cleanup: true - - name: Accept all SDK licenses - shell: bash - run: printf 'y\ny\ny\ny\ny\n' | $ANDROID_HOME/tools/bin/sdkmanager --licenses - - name: Initialize git config and commit changes shell: bash run: | diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index 1127ad2e..e8bcd783 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -41,6 +41,21 @@ jobs: with: fetch-depth: 0 + - name: Accept all SDK licenses + shell: bash + run: printf 'y\ny\ny\ny\ny\ny\n' | $ANDROID_HOME/tools/bin/sdkmanager --licenses + + - name: Get build-tools directory + id: build-tools-path + shell: bash + run: echo "dir=${ANDROID_HOME}/build-tools/34.0.0-rc3" >> "${GITHUB_OUTPUT}" + + - name: Cache build-tools + uses: actions/cache@v3 + with: + path: ${{ steps.build-tools-path.outputs.dir }} + key: ${{ runner.os }}-34.0.0-rc3 + - name: Set up JDK uses: actions/setup-java@5ffc13f4174014e2d4d4572b3d74c3fa61aeb2c2 # v3.11.0 with: @@ -50,10 +65,6 @@ jobs: - name: Copy CI gradle.properties run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties - - name: Accept all SDK licenses - shell: bash - run: printf 'y\ny\ny\ny\ny\n' | $ANDROID_HOME/tools/bin/sdkmanager --licenses - - name: Check codestyle uses: gradle/gradle-build-action@749f47bda3e44aa060e82d7b3ef7e40d953bd629 # v2.4.2 with: @@ -76,6 +87,21 @@ jobs: with: fetch-depth: 0 + - name: Accept all SDK licenses + shell: bash + run: printf 'y\ny\ny\ny\ny\ny\n' | $ANDROID_HOME/tools/bin/sdkmanager --licenses + + - name: Get build-tools directory + id: build-tools-path + shell: bash + run: echo "dir=${ANDROID_HOME}/build-tools/34.0.0-rc3" >> "${GITHUB_OUTPUT}" + + - name: Cache build-tools + uses: actions/cache@v3 + with: + path: ${{ steps.build-tools-path.outputs.dir }} + key: ${{ runner.os }}-34.0.0-rc3 + - name: Set up JDK uses: actions/setup-java@5ffc13f4174014e2d4d4572b3d74c3fa61aeb2c2 # v3.11.0 with: @@ -85,10 +111,6 @@ jobs: - name: Copy CI gradle.properties run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties - - name: Accept all SDK licenses - shell: bash - run: printf 'y\ny\ny\ny\ny\n' | $ANDROID_HOME/tools/bin/sdkmanager --licenses - - name: Run unit tests uses: gradle/gradle-build-action@749f47bda3e44aa060e82d7b3ef7e40d953bd629 # v2.4.2 with: @@ -118,6 +140,21 @@ jobs: with: fetch-depth: 0 + - name: Accept all SDK licenses + shell: bash + run: printf 'y\ny\ny\ny\ny\ny\n' | $ANDROID_HOME/tools/bin/sdkmanager --licenses + + - name: Get build-tools directory + id: build-tools-path + shell: bash + run: echo "dir=${ANDROID_HOME}/build-tools/34.0.0-rc3" >> "${GITHUB_OUTPUT}" + + - name: Cache build-tools + uses: actions/cache@v3 + with: + path: ${{ steps.build-tools-path.outputs.dir }} + key: ${{ runner.os }}-34.0.0-rc3 + - name: Set up JDK uses: actions/setup-java@5ffc13f4174014e2d4d4572b3d74c3fa61aeb2c2 # v3.11.0 with: @@ -127,10 +164,6 @@ jobs: - name: Copy CI gradle.properties run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties - - name: Accept all SDK licenses - shell: bash - run: printf 'y\ny\ny\ny\ny\n' | $ANDROID_HOME/tools/bin/sdkmanager --licenses - - name: Build debug APKs uses: gradle/gradle-build-action@749f47bda3e44aa060e82d7b3ef7e40d953bd629 # v2.4.2 with: @@ -153,6 +186,21 @@ jobs: with: fetch-depth: 0 + - name: Accept all SDK licenses + shell: bash + run: printf 'y\ny\ny\ny\ny\ny\n' | $ANDROID_HOME/tools/bin/sdkmanager --licenses + + - name: Get build-tools directory + id: build-tools-path + shell: bash + run: echo "dir=${ANDROID_HOME}/build-tools/34.0.0-rc3" >> "${GITHUB_OUTPUT}" + + - name: Cache build-tools + uses: actions/cache@v3 + with: + path: ${{ steps.build-tools-path.outputs.dir }} + key: ${{ runner.os }}-34.0.0-rc3 + - name: Set up JDK uses: actions/setup-java@5ffc13f4174014e2d4d4572b3d74c3fa61aeb2c2 # v3.11.0 with: @@ -162,10 +210,6 @@ jobs: - name: Copy CI gradle.properties run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties - - name: Accept all SDK licenses - shell: bash - run: printf 'y\ny\ny\ny\ny\n' | $ANDROID_HOME/tools/bin/sdkmanager --licenses - - name: Check library API uses: gradle/gradle-build-action@749f47bda3e44aa060e82d7b3ef7e40d953bd629 # v2.4.2 with: @@ -188,6 +232,21 @@ jobs: with: fetch-depth: 0 + - name: Accept all SDK licenses + shell: bash + run: printf 'y\ny\ny\ny\ny\ny\n' | $ANDROID_HOME/tools/bin/sdkmanager --licenses + + - name: Get build-tools directory + id: build-tools-path + shell: bash + run: echo "dir=${ANDROID_HOME}/build-tools/34.0.0-rc3" >> "${GITHUB_OUTPUT}" + + - name: Cache build-tools + uses: actions/cache@v3 + with: + path: ${{ steps.build-tools-path.outputs.dir }} + key: ${{ runner.os }}-34.0.0-rc3 + - name: Set up JDK uses: actions/setup-java@5ffc13f4174014e2d4d4572b3d74c3fa61aeb2c2 # v3.11.0 with: @@ -197,10 +256,6 @@ jobs: - name: Copy CI gradle.properties run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties - - name: Accept all SDK licenses - shell: bash - run: printf 'y\ny\ny\ny\ny\n' | $ANDROID_HOME/tools/bin/sdkmanager --licenses - - name: Run Lint on debug variants uses: gradle/gradle-build-action@749f47bda3e44aa060e82d7b3ef7e40d953bd629 # v2.4.2 with: @@ -223,6 +278,21 @@ jobs: with: fetch-depth: 0 + - name: Accept all SDK licenses + shell: bash + run: printf 'y\ny\ny\ny\ny\ny\n' | $ANDROID_HOME/tools/bin/sdkmanager --licenses + + - name: Get build-tools directory + id: build-tools-path + shell: bash + run: echo "dir=${ANDROID_HOME}/build-tools/34.0.0-rc3" >> "${GITHUB_OUTPUT}" + + - name: Cache build-tools + uses: actions/cache@v3 + with: + path: ${{ steps.build-tools-path.outputs.dir }} + key: ${{ runner.os }}-34.0.0-rc3 + - name: Set up JDK uses: actions/setup-java@5ffc13f4174014e2d4d4572b3d74c3fa61aeb2c2 # v3.11.0 with: @@ -232,10 +302,6 @@ jobs: - name: Copy CI gradle.properties run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties - - name: Accept all SDK licenses - shell: bash - run: printf 'y\ny\ny\ny\ny\n' | $ANDROID_HOME/tools/bin/sdkmanager --licenses - - name: Run Lint uses: gradle/gradle-build-action@749f47bda3e44aa060e82d7b3ef7e40d953bd629 # v2.4.2 with: diff --git a/.github/workflows/shadow_job.yml b/.github/workflows/shadow_job.yml index 8a7f03c2..ab72f7d2 100644 --- a/.github/workflows/shadow_job.yml +++ b/.github/workflows/shadow_job.yml @@ -38,6 +38,21 @@ jobs: with: fetch-depth: 0 + - name: Accept all SDK licenses + shell: bash + run: printf 'y\ny\ny\ny\ny\ny\n' | $ANDROID_HOME/tools/bin/sdkmanager --licenses + + - name: Get build-tools directory + id: build-tools-path + shell: bash + run: echo "dir=${ANDROID_HOME}/build-tools/34.0.0-rc3" >> "${GITHUB_OUTPUT}" + + - name: Cache build-tools + uses: actions/cache@v3 + with: + path: ${{ steps.build-tools-path.outputs.dir }} + key: ${{ runner.os }}-34.0.0-rc3 + - name: Set up JDK uses: actions/setup-java@5ffc13f4174014e2d4d4572b3d74c3fa61aeb2c2 # v3.11.0 with: diff --git a/.github/workflows/sync_crowdin.yml b/.github/workflows/sync_crowdin.yml index c5f58d7e..24dcd76b 100644 --- a/.github/workflows/sync_crowdin.yml +++ b/.github/workflows/sync_crowdin.yml @@ -11,16 +11,27 @@ jobs: - name: Checkout uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2 + - name: Accept all SDK licenses + shell: bash + run: printf 'y\ny\ny\ny\ny\ny\n' | $ANDROID_HOME/tools/bin/sdkmanager --licenses + + - name: Get build-tools directory + id: build-tools-path + shell: bash + run: echo "dir=${ANDROID_HOME}/build-tools/34.0.0-rc3" >> "${GITHUB_OUTPUT}" + + - name: Cache build-tools + uses: actions/cache@v3 + with: + path: ${{ steps.build-tools-path.outputs.dir }} + key: ${{ runner.os }}-34.0.0-rc3 + - name: Set up JDK uses: actions/setup-java@5ffc13f4174014e2d4d4572b3d74c3fa61aeb2c2 # v3.11.0 with: distribution: temurin java-version: 18 - - name: Accept all SDK licenses - shell: bash - run: printf 'y\ny\ny\ny\ny\n' | $ANDROID_HOME/tools/bin/sdkmanager --licenses - - name: Download new translations from Crowdin uses: gradle/gradle-build-action@749f47bda3e44aa060e82d7b3ef7e40d953bd629 # v2.4.2 with: diff --git a/.github/workflows/update_publicsuffix_data.yml b/.github/workflows/update_publicsuffix_data.yml index 358152c5..07393b4c 100644 --- a/.github/workflows/update_publicsuffix_data.yml +++ b/.github/workflows/update_publicsuffix_data.yml @@ -11,16 +11,27 @@ jobs: - name: Checkout uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2 + - name: Accept all SDK licenses + shell: bash + run: printf 'y\ny\ny\ny\ny\ny\n' | $ANDROID_HOME/tools/bin/sdkmanager --licenses + + - name: Get build-tools directory + id: build-tools-path + shell: bash + run: echo "dir=${ANDROID_HOME}/build-tools/34.0.0-rc3" >> "${GITHUB_OUTPUT}" + + - name: Cache build-tools + uses: actions/cache@v3 + with: + path: ${{ steps.build-tools-path.outputs.dir }} + key: ${{ runner.os }}-34.0.0-rc3 + - name: Set up JDK uses: actions/setup-java@5ffc13f4174014e2d4d4572b3d74c3fa61aeb2c2 # v3.11.0 with: distribution: temurin java-version: 18 - - name: Accept all SDK licenses - shell: bash - run: printf 'y\ny\ny\ny\ny\n' | $ANDROID_HOME/tools/bin/sdkmanager --licenses - - name: Download new publicsuffix data uses: gradle/gradle-build-action@749f47bda3e44aa060e82d7b3ef7e40d953bd629 # v2.4.2 with: |