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-08-17 22:40:45 +0300
committerGitHub <noreply@github.com>2022-08-17 22:40:45 +0300
commit2e94541fcfe0c33e8536469110d3b19f156bc6f9 (patch)
treee797e51a1f310747ee0534df96055283f50a4e06
parent330583f47800c60cf001239550d291d16274756a (diff)
Use updated NDK version in android test suite (#1053)
https://github.com/actions/runner-images/issues/5930 recently updated the NDK version, resulting in test breakages. Update the 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 836b444..49e8c2e 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-bundle/build/cmake/android.toolchain.cmake -DANDROID_PLATFORM=16 -DANDROID_ABI=x86_64 -DCMAKE_BUILD_TYPE=Debug ..
+ 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 ..
- name: Build
run: cmake --build . --parallel