File tree Expand file tree Collapse file tree 2 files changed +128
-364
lines changed
actions/configure-cmake-project Expand file tree Collapse file tree 2 files changed +128
-364
lines changed Original file line number Diff line number Diff line change @@ -405,7 +405,7 @@ runs:
405405 Add-KeyValueIfNew $Defines SWIFT_ANDROID_NDK_PATH "$AndroidNDKPath"
406406
407407 $SWIFTC = if ($UseBuiltCompilers.Contains("Swift")) {
408- $SWIFTC = "${Env:GITHUB_WORKSPACE}/BinaryCache/Library/Developer/Toolchains/${SwiftVersion}+Asserts/usr/bin/swiftc.exe"
408+ "${Env:GITHUB_WORKSPACE}/BinaryCache/Library/Developer/Toolchains/${SwiftVersion}+Asserts/usr/bin/swiftc.exe"
409409 } else {
410410 # The pinned toolchain is already in the path.
411411 "swiftc.exe"
@@ -461,7 +461,8 @@ runs:
461461 }
462462 }
463463
464- if ($EnableCaching) {
464+ # TODO(steelskin): sccache does not work with "-gsplit-dwarf".
465+ if ($EnableCaching -and $OS -ne "Android") {
465466 if ($UseC) {
466467 Add-KeyValueIfNew $Defines CMAKE_C_COMPILER_LAUNCHER "sccache"
467468 }
You can’t perform that action at this time.
0 commit comments