From 716e86903e68aa30daf0663ee0ab6a90188eb67f Mon Sep 17 00:00:00 2001 From: Finagolfin Date: Thu, 19 Mar 2026 20:06:41 +0530 Subject: [PATCH] Remove workaround for bug triggered by Android environment variable We had to unset this common Android env var to work around the compiler bug, but it's fixed in the compiler now. --- .github/workflows/scripts/install-and-build-with-sdk.sh | 5 ----- 1 file changed, 5 deletions(-) diff --git a/.github/workflows/scripts/install-and-build-with-sdk.sh b/.github/workflows/scripts/install-and-build-with-sdk.sh index e18b6451..6c337e0c 100755 --- a/.github/workflows/scripts/install-and-build-with-sdk.sh +++ b/.github/workflows/scripts/install-and-build-with-sdk.sh @@ -797,11 +797,6 @@ build() { log "Running: $build_command" - # clear the ANDROID_NDK_ROOT environment variable if it is set - # due to https://github.com/swiftlang/swift-driver/pull/1879 - # otherwise build error: missing required module 'SwiftAndroid' - export ANDROID_NDK_ROOT="" - if eval "$build_command"; then log "✅ Swift build with Android Swift SDK completed successfully" else