fix(ci): remove build-tools workaround
No longer necessary since AGP now uses build-tools 34.0.0
This commit is contained in:
parent
7675641b1d
commit
ab798d75bb
9 changed files with 0 additions and 210 deletions
15
.github/workflows/codeql_analysis.yml
vendored
15
.github/workflows/codeql_analysis.yml
vendored
|
@ -24,21 +24,6 @@ jobs:
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
|
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
|
||||||
|
|
||||||
- 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" >> "${GITHUB_OUTPUT}"
|
|
||||||
|
|
||||||
- name: Cache build-tools
|
|
||||||
uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3
|
|
||||||
with:
|
|
||||||
path: ${{ steps.build-tools-path.outputs.dir }}
|
|
||||||
key: ${{ runner.os }}-34.0.0
|
|
||||||
|
|
||||||
- name: Set up JDK
|
- name: Set up JDK
|
||||||
uses: actions/setup-java@5ffc13f4174014e2d4d4572b3d74c3fa61aeb2c2 # v3.11.0
|
uses: actions/setup-java@5ffc13f4174014e2d4d4572b3d74c3fa61aeb2c2 # v3.11.0
|
||||||
with:
|
with:
|
||||||
|
|
15
.github/workflows/deploy_github_releases.yml
vendored
15
.github/workflows/deploy_github_releases.yml
vendored
|
@ -12,21 +12,6 @@ jobs:
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
|
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
|
||||||
|
|
||||||
- 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" >> "${GITHUB_OUTPUT}"
|
|
||||||
|
|
||||||
- name: Cache build-tools
|
|
||||||
uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3
|
|
||||||
with:
|
|
||||||
path: ${{ steps.build-tools-path.outputs.dir }}
|
|
||||||
key: ${{ runner.os }}-34.0.0
|
|
||||||
|
|
||||||
- name: Set up JDK
|
- name: Set up JDK
|
||||||
uses: actions/setup-java@5ffc13f4174014e2d4d4572b3d74c3fa61aeb2c2 # v3.11.0
|
uses: actions/setup-java@5ffc13f4174014e2d4d4572b3d74c3fa61aeb2c2 # v3.11.0
|
||||||
with:
|
with:
|
||||||
|
|
15
.github/workflows/deploy_library_releases.yml
vendored
15
.github/workflows/deploy_library_releases.yml
vendored
|
@ -11,21 +11,6 @@ jobs:
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
|
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
|
||||||
|
|
||||||
- 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" >> "${GITHUB_OUTPUT}"
|
|
||||||
|
|
||||||
- name: Cache build-tools
|
|
||||||
uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3
|
|
||||||
with:
|
|
||||||
path: ${{ steps.build-tools-path.outputs.dir }}
|
|
||||||
key: ${{ runner.os }}-34.0.0
|
|
||||||
|
|
||||||
- name: Set up JDK
|
- name: Set up JDK
|
||||||
uses: actions/setup-java@5ffc13f4174014e2d4d4572b3d74c3fa61aeb2c2 # v3.11.0
|
uses: actions/setup-java@5ffc13f4174014e2d4d4572b3d74c3fa61aeb2c2 # v3.11.0
|
||||||
with:
|
with:
|
||||||
|
|
15
.github/workflows/deploy_snapshot.yml
vendored
15
.github/workflows/deploy_snapshot.yml
vendored
|
@ -23,21 +23,6 @@ jobs:
|
||||||
with:
|
with:
|
||||||
fetch-depth: 0
|
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" >> "${GITHUB_OUTPUT}"
|
|
||||||
|
|
||||||
- name: Cache build-tools
|
|
||||||
uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3
|
|
||||||
with:
|
|
||||||
path: ${{ steps.build-tools-path.outputs.dir }}
|
|
||||||
key: ${{ runner.os }}-34.0.0
|
|
||||||
|
|
||||||
- name: Set up JDK
|
- name: Set up JDK
|
||||||
uses: actions/setup-java@5ffc13f4174014e2d4d4572b3d74c3fa61aeb2c2 # v3.11.0
|
uses: actions/setup-java@5ffc13f4174014e2d4d4572b3d74c3fa61aeb2c2 # v3.11.0
|
||||||
with:
|
with:
|
||||||
|
|
15
.github/workflows/draft_new_release.yml
vendored
15
.github/workflows/draft_new_release.yml
vendored
|
@ -36,21 +36,6 @@ jobs:
|
||||||
with:
|
with:
|
||||||
ref: ${{ env.CHECKOUT_REF }}
|
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" >> "${GITHUB_OUTPUT}"
|
|
||||||
|
|
||||||
- name: Cache build-tools
|
|
||||||
uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3
|
|
||||||
with:
|
|
||||||
path: ${{ steps.build-tools-path.outputs.dir }}
|
|
||||||
key: ${{ runner.os }}-34.0.0
|
|
||||||
|
|
||||||
- name: Set up JDK
|
- name: Set up JDK
|
||||||
uses: actions/setup-java@5ffc13f4174014e2d4d4572b3d74c3fa61aeb2c2 # v3.11.0
|
uses: actions/setup-java@5ffc13f4174014e2d4d4572b3d74c3fa61aeb2c2 # v3.11.0
|
||||||
with:
|
with:
|
||||||
|
|
90
.github/workflows/pull_request.yml
vendored
90
.github/workflows/pull_request.yml
vendored
|
@ -41,21 +41,6 @@ jobs:
|
||||||
with:
|
with:
|
||||||
fetch-depth: 0
|
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" >> "${GITHUB_OUTPUT}"
|
|
||||||
|
|
||||||
- name: Cache build-tools
|
|
||||||
uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3
|
|
||||||
with:
|
|
||||||
path: ${{ steps.build-tools-path.outputs.dir }}
|
|
||||||
key: ${{ runner.os }}-34.0.0
|
|
||||||
|
|
||||||
- name: Set up JDK
|
- name: Set up JDK
|
||||||
uses: actions/setup-java@5ffc13f4174014e2d4d4572b3d74c3fa61aeb2c2 # v3.11.0
|
uses: actions/setup-java@5ffc13f4174014e2d4d4572b3d74c3fa61aeb2c2 # v3.11.0
|
||||||
with:
|
with:
|
||||||
|
@ -87,21 +72,6 @@ jobs:
|
||||||
with:
|
with:
|
||||||
fetch-depth: 0
|
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" >> "${GITHUB_OUTPUT}"
|
|
||||||
|
|
||||||
- name: Cache build-tools
|
|
||||||
uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3
|
|
||||||
with:
|
|
||||||
path: ${{ steps.build-tools-path.outputs.dir }}
|
|
||||||
key: ${{ runner.os }}-34.0.0
|
|
||||||
|
|
||||||
- name: Set up JDK
|
- name: Set up JDK
|
||||||
uses: actions/setup-java@5ffc13f4174014e2d4d4572b3d74c3fa61aeb2c2 # v3.11.0
|
uses: actions/setup-java@5ffc13f4174014e2d4d4572b3d74c3fa61aeb2c2 # v3.11.0
|
||||||
with:
|
with:
|
||||||
|
@ -140,21 +110,6 @@ jobs:
|
||||||
with:
|
with:
|
||||||
fetch-depth: 0
|
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" >> "${GITHUB_OUTPUT}"
|
|
||||||
|
|
||||||
- name: Cache build-tools
|
|
||||||
uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3
|
|
||||||
with:
|
|
||||||
path: ${{ steps.build-tools-path.outputs.dir }}
|
|
||||||
key: ${{ runner.os }}-34.0.0
|
|
||||||
|
|
||||||
- name: Set up JDK
|
- name: Set up JDK
|
||||||
uses: actions/setup-java@5ffc13f4174014e2d4d4572b3d74c3fa61aeb2c2 # v3.11.0
|
uses: actions/setup-java@5ffc13f4174014e2d4d4572b3d74c3fa61aeb2c2 # v3.11.0
|
||||||
with:
|
with:
|
||||||
|
@ -186,21 +141,6 @@ jobs:
|
||||||
with:
|
with:
|
||||||
fetch-depth: 0
|
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" >> "${GITHUB_OUTPUT}"
|
|
||||||
|
|
||||||
- name: Cache build-tools
|
|
||||||
uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3
|
|
||||||
with:
|
|
||||||
path: ${{ steps.build-tools-path.outputs.dir }}
|
|
||||||
key: ${{ runner.os }}-34.0.0
|
|
||||||
|
|
||||||
- name: Set up JDK
|
- name: Set up JDK
|
||||||
uses: actions/setup-java@5ffc13f4174014e2d4d4572b3d74c3fa61aeb2c2 # v3.11.0
|
uses: actions/setup-java@5ffc13f4174014e2d4d4572b3d74c3fa61aeb2c2 # v3.11.0
|
||||||
with:
|
with:
|
||||||
|
@ -232,21 +172,6 @@ jobs:
|
||||||
with:
|
with:
|
||||||
fetch-depth: 0
|
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" >> "${GITHUB_OUTPUT}"
|
|
||||||
|
|
||||||
- name: Cache build-tools
|
|
||||||
uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3
|
|
||||||
with:
|
|
||||||
path: ${{ steps.build-tools-path.outputs.dir }}
|
|
||||||
key: ${{ runner.os }}-34.0.0
|
|
||||||
|
|
||||||
- name: Set up JDK
|
- name: Set up JDK
|
||||||
uses: actions/setup-java@5ffc13f4174014e2d4d4572b3d74c3fa61aeb2c2 # v3.11.0
|
uses: actions/setup-java@5ffc13f4174014e2d4d4572b3d74c3fa61aeb2c2 # v3.11.0
|
||||||
with:
|
with:
|
||||||
|
@ -278,21 +203,6 @@ jobs:
|
||||||
with:
|
with:
|
||||||
fetch-depth: 0
|
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" >> "${GITHUB_OUTPUT}"
|
|
||||||
|
|
||||||
- name: Cache build-tools
|
|
||||||
uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3
|
|
||||||
with:
|
|
||||||
path: ${{ steps.build-tools-path.outputs.dir }}
|
|
||||||
key: ${{ runner.os }}-34.0.0
|
|
||||||
|
|
||||||
- name: Set up JDK
|
- name: Set up JDK
|
||||||
uses: actions/setup-java@5ffc13f4174014e2d4d4572b3d74c3fa61aeb2c2 # v3.11.0
|
uses: actions/setup-java@5ffc13f4174014e2d4d4572b3d74c3fa61aeb2c2 # v3.11.0
|
||||||
with:
|
with:
|
||||||
|
|
15
.github/workflows/shadow_job.yml
vendored
15
.github/workflows/shadow_job.yml
vendored
|
@ -38,21 +38,6 @@ jobs:
|
||||||
with:
|
with:
|
||||||
fetch-depth: 0
|
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" >> "${GITHUB_OUTPUT}"
|
|
||||||
|
|
||||||
- name: Cache build-tools
|
|
||||||
uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3
|
|
||||||
with:
|
|
||||||
path: ${{ steps.build-tools-path.outputs.dir }}
|
|
||||||
key: ${{ runner.os }}-34.0.0
|
|
||||||
|
|
||||||
- name: Set up JDK
|
- name: Set up JDK
|
||||||
uses: actions/setup-java@5ffc13f4174014e2d4d4572b3d74c3fa61aeb2c2 # v3.11.0
|
uses: actions/setup-java@5ffc13f4174014e2d4d4572b3d74c3fa61aeb2c2 # v3.11.0
|
||||||
with:
|
with:
|
||||||
|
|
15
.github/workflows/sync_crowdin.yml
vendored
15
.github/workflows/sync_crowdin.yml
vendored
|
@ -11,21 +11,6 @@ jobs:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
|
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
|
||||||
|
|
||||||
- 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" >> "${GITHUB_OUTPUT}"
|
|
||||||
|
|
||||||
- name: Cache build-tools
|
|
||||||
uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3
|
|
||||||
with:
|
|
||||||
path: ${{ steps.build-tools-path.outputs.dir }}
|
|
||||||
key: ${{ runner.os }}-34.0.0
|
|
||||||
|
|
||||||
- name: Set up JDK
|
- name: Set up JDK
|
||||||
uses: actions/setup-java@5ffc13f4174014e2d4d4572b3d74c3fa61aeb2c2 # v3.11.0
|
uses: actions/setup-java@5ffc13f4174014e2d4d4572b3d74c3fa61aeb2c2 # v3.11.0
|
||||||
with:
|
with:
|
||||||
|
|
15
.github/workflows/update_publicsuffix_data.yml
vendored
15
.github/workflows/update_publicsuffix_data.yml
vendored
|
@ -11,21 +11,6 @@ jobs:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
|
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
|
||||||
|
|
||||||
- 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" >> "${GITHUB_OUTPUT}"
|
|
||||||
|
|
||||||
- name: Cache build-tools
|
|
||||||
uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3
|
|
||||||
with:
|
|
||||||
path: ${{ steps.build-tools-path.outputs.dir }}
|
|
||||||
key: ${{ runner.os }}-34.0.0
|
|
||||||
|
|
||||||
- name: Set up JDK
|
- name: Set up JDK
|
||||||
uses: actions/setup-java@5ffc13f4174014e2d4d4572b3d74c3fa61aeb2c2 # v3.11.0
|
uses: actions/setup-java@5ffc13f4174014e2d4d4572b3d74c3fa61aeb2c2 # v3.11.0
|
||||||
with:
|
with:
|
||||||
|
|
Loading…
Reference in a new issue