From eef5c5366e38c1ba1639d1179589a190c541eb68 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 should be 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 fa1176ab..e0a9e81f 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