From d823dd07bc11b24e6cd38edd3c3c2ff6090ec8c7 Mon Sep 17 00:00:00 2001 From: Ross Savage Date: Fri, 5 Jan 2024 12:06:20 +0100 Subject: [PATCH] Set the NDK clang version --- .github/workflows/build-bindings-android.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-bindings-android.yml b/.github/workflows/build-bindings-android.yml index 45ddbfd91..07577dcfd 100644 --- a/.github/workflows/build-bindings-android.yml +++ b/.github/workflows/build-bindings-android.yml @@ -59,11 +59,12 @@ jobs: with: workspaces: libs - - name: Setup NDK version + - name: Set NDK environment variables run: | # https://github.com/actions/runner-images/blob/main/images/ubuntu/Ubuntu2204-Readme.md#environment-variables-2 echo "ANDROID_NDK_HOME=$ANDROID_NDK_LATEST_HOME" >> $GITHUB_ENV echo "ANDROID_NDK_ROOT=$ANDROID_NDK_LATEST_HOME" >> $GITHUB_ENV + echo "NDK_CLANG_VERSION=17.0.2" >> $GITHUB_ENV - name: Build sdk-bindings working-directory: libs/sdk-bindings