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:
authorDmitry Kobets <dmitrykobets@microsoft.com>2022-09-27 01:35:42 +0300
committerDmitry Kobets <dmitrykobets@microsoft.com>2022-09-27 01:35:42 +0300
commit327415221f8af0f0e67d4c691272b0119a236a3e (patch)
tree2f206b758f7d7421118211e4718b94a3213fe925
parent10df83d292bf5bbdc487e57dc8c2dc8c7a01f4d1 (diff)
Fix NDK version in Android CIfix_android_ndk_version
-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