From b83b00e439cba77f1b7037a7ecd17a2b7cd7b734 Mon Sep 17 00:00:00 2001 From: Shivam Goyal Date: Mon, 5 Jun 2023 20:16:15 +0530 Subject: [PATCH] TP-31287 | Add NDK & CMake to Checkstyle Action (#6792) --- .github/workflows/android_checkstyle.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/android_checkstyle.yml b/.github/workflows/android_checkstyle.yml index afe2aa0b06..ab67915370 100644 --- a/.github/workflows/android_checkstyle.yml +++ b/.github/workflows/android_checkstyle.yml @@ -21,8 +21,11 @@ jobs: with: java-version: 11 distribution: adopt - - name: Setup Android SDK + - name: Set up Android SDK uses: android-actions/setup-android@v2 - - name: Grant execute permission for gradlew + - name: Set up Android NDK & CMake + run: sdkmanager "ndk;25.2.9519653" "cmake;3.22.1" + - name: Grant Execute Permission for Gradle Wrapper run: chmod +x gradlew - - run: ./gradlew spotlessCheck + - name: Run Spotless Check + run: ./gradlew spotlessCheck