Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/microsoft/GSL.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordmitrykobets-msft <89153909+dmitrykobets-msft@users.noreply.github.com>2022-09-28 03:04:21 +0300
committerGitHub <noreply@github.com>2022-09-28 03:04:21 +0300
commit1683d87a3f45dff1817e858dbaf006e5ff84e784 (patch)
tree2f206b758f7d7421118211e4718b94a3213fe925
parent10df83d292bf5bbdc487e57dc8c2dc8c7a01f4d1 (diff)
Fix NDK version in Android CI (#1054)
This PR future-proofs the fix made in #1053, which is now outdated due to further updates to the NDK version in the Azure VMs used as part of the CI.
-rw-r--r--.github/workflows/android.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml
index 49e8c2e..dd0b5a4 100644
--- a/.github/workflows/android.yml
+++ b/.github/workflows/android.yml
@@ -29,7 +29,7 @@ jobs:
echo "Emulator starting"
- name: Configure
- run: cmake -Werror=dev -DCMAKE_TOOLCHAIN_FILE=$ANDROID_HOME/ndk/25.0.8775105/build/cmake/android.toolchain.cmake -DANDROID_PLATFORM=16 -DANDROID_ABI=x86_64 -DCMAKE_BUILD_TYPE=Debug ..
+ run: cmake -Werror=dev -DCMAKE_TOOLCHAIN_FILE=$ANDROID_NDK_LATEST_HOME/build/cmake/android.toolchain.cmake -DANDROID_PLATFORM=16 -DANDROID_ABI=x86_64 -DCMAKE_BUILD_TYPE=Debug ..
- name: Build
run: cmake --build . --parallel