Skip to content

Commit 3ba32fc

Browse files
committed
Remove 'Setup NDK' step from CI workflow
It appears that this setup is no longer required for any of the workflow jobs.
1 parent 5b086c2 commit 3ba32fc

File tree

1 file changed

+0
-22
lines changed

1 file changed

+0
-22
lines changed

.github/workflows/ci-check.yml

-22
Original file line numberDiff line numberDiff line change
@@ -40,17 +40,6 @@ jobs:
4040
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
4141
- uses: actions/checkout@v1
4242

43-
# Sets up the NDK required by AGP 3.6.x
44-
- name: NDK Cache
45-
id: ndk-cache
46-
uses: actions/cache@v2
47-
with:
48-
path: /usr/local/lib/android/sdk/ndk/20.0.5594570
49-
key: ndk-cache-20.0.5594570
50-
- name: Setup NDK
51-
if: steps.ndk-cache.outputs.cache-hit != 'true'
52-
run: sudo $ANDROID_HOME/tools/bin/sdkmanager 'ndk;20.0.5594570'
53-
5443
# Use Java 8
5544
- uses: actions/setup-java@v1
5645
with:
@@ -77,17 +66,6 @@ jobs:
7766
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
7867
- uses: actions/checkout@v1
7968

80-
# Sets up the NDK required by AGP 3.6.x
81-
- name: NDK Cache
82-
id: ndk-cache
83-
uses: actions/cache@v2
84-
with:
85-
path: /usr/local/lib/android/sdk/ndk/20.0.5594570
86-
key: ndk-cache-20.0.5594570
87-
- name: Setup NDK
88-
if: steps.ndk-cache.outputs.cache-hit != 'true'
89-
run: sudo $ANDROID_HOME/tools/bin/sdkmanager 'ndk;20.0.5594570'
90-
9169
# Patch issue in platform-tools 31.0.3 where platform-tools/api/api-versions.xml is missing (see https://issuetracker.google.com/issues/195445762)
9270
- name: Patch api-versions
9371
run: sudo test -f $ANDROID_HOME/platform-tools/api/api-versions.xml || (sudo mkdir $ANDROID_HOME/platform-tools/api && sudo cp .github/api-versions.xml $ANDROID_HOME/platform-tools/api/api-versions.xml)

0 commit comments

Comments
 (0)