Skip to content

Commit 710fe73

Browse files
authored
Update android.yml
1 parent cdf9cd2 commit 710fe73

File tree

1 file changed

+12
-10
lines changed

1 file changed

+12
-10
lines changed

.github/workflows/android.yml

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -10,18 +10,20 @@ jobs:
1010
permissions:
1111
contents: write
1212
steps:
13-
- uses: actions/checkout@v2
13+
- uses: actions/checkout@v4
1414
- name: set up JDK 17
15-
uses: actions/setup-java@v1
15+
uses: actions/setup-java@v4
1616
with:
1717
java-version: 17
1818
- name: Check Snippets
1919
run: python scripts/checksnippets.py
20-
- name: Install NDK
21-
run: echo "y" | sudo ${ANDROID_HOME}/cmdline-tools/latest/bin/sdkmanager --install "ndk;21.0.6113669" --sdk_root=${ANDROID_SDK_ROOT}
22-
- name: Build with Gradle (Pull Request)
23-
run: ./build_pull_request.sh
24-
if: github.event_name == 'pull_request'
25-
- name: Build with Gradle (Push)
26-
run: ./gradlew clean ktlint build
27-
if: github.event_name != 'pull_request'
20+
- name: What is home?
21+
run: echo $HOME
22+
# - name: Install NDK
23+
# run: echo "y" | sudo ${ANDROID_HOME}/cmdline-tools/latest/bin/sdkmanager --install "ndk;21.0.6113669" --sdk_root=${ANDROID_SDK_ROOT}
24+
# - name: Build with Gradle (Pull Request)
25+
# run: ./build_pull_request.sh
26+
# if: github.event_name == 'pull_request'
27+
# - name: Build with Gradle (Push)
28+
# run: ./gradlew clean ktlint build
29+
# if: github.event_name != 'pull_request'

0 commit comments

Comments
 (0)