aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/deploy_library_releases.yml
diff options
context:
space:
mode:
authorHarsh Shandilya <me@msfjarvis.dev>2023-05-28 03:41:27 +0530
committerHarsh Shandilya <me@msfjarvis.dev>2023-05-28 03:41:27 +0530
commita8b3e609dea73426adc62ca63134ad2b2272596d (patch)
treec2de6f4ed2f9c1c89a01a2a8a4c4c1ccaaa53010 /.github/workflows/deploy_library_releases.yml
parent9838801ed3a0fb83368ede8166e38a38d056f618 (diff)
fix(ci): manually cache Android SDK build-tools
Without this all CI steps run extra slowly
Diffstat (limited to '.github/workflows/deploy_library_releases.yml')
-rw-r--r--.github/workflows/deploy_library_releases.yml19
1 files changed, 15 insertions, 4 deletions
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: