@@ -1048,18 +1048,22 @@ jobs:
1048
1048
1049
1049
$SwiftFlags += " -sdk `"${SDKROOT}`""
1050
1050
1051
- Write-Output "cc=${CC}" | Out-File -FilePath $env:GITHUB_OUTPUT -Encoding utf8 -Append
1052
- Write-Output "cxx=${CXX}" | Out-File -FilePath $env:GITHUB_OUTPUT -Encoding utf8 -Append
1053
- Write-Output "swiftc=${SWIFTC}" | Out-File -FilePath $env:GITHUB_OUTPUT -Encoding utf8 -Append
1054
- Write-Output "cxxflags=${CxxFlags}" | Out-File -FilePath $env:GITHUB_OUTPUT -Encoding utf8 -Append
1055
- Write-Output "swiftflags=${SwiftFlags}" | Out-File -FilePath $env:GITHUB_OUTPUT -Encoding utf8 -Append
1056
- Write-Output "extra_flags=${ExtraFlags}" | Out-File -FilePath $env:GITHUB_OUTPUT -Encoding utf8 -Append
1057
- Write-Output "cache=${CACHE}" | Out-File -FilePath $env:GITHUB_OUTPUT -Encoding utf8 -Append
1058
- Write-Output "clang_location=${CLANG_LOCATION}" | Out-File -FilePath $env:GITHUB_OUTPUT -Encoding utf8 -Append
1059
- Write-Output "libpython_path=${LIBPYTHON_PATH}" | Out-File -FilePath $env:GITHUB_OUTPUT -Encoding utf8 -Append
1060
- Write-Output "python_include_dir=${PYTHON_INCLUDE_DIR}" | Out-File -FilePath $env:GITHUB_OUTPUT -Encoding utf8 -Append
1061
- Write-Output "python_binary=${PYTHON_BINARY}" | Out-File -FilePath $env:GITHUB_OUTPUT -Encoding utf8 -Append
1062
- Write-Output "sdkroot=${SDKROOT}" | Out-File -FilePath $env:GITHUB_OUTPUT -Encoding utf8 -Append
1051
+ # Output the context for the configure task.
1052
+ $Context = @"
1053
+ cc=${CC}
1054
+ cxx=${CXX}
1055
+ swiftc=${SWIFTC}
1056
+ cxxflags=${CxxFlags}
1057
+ swiftflags=${SwiftFlags}
1058
+ extra_flags=${ExtraFlags}
1059
+ cache=${CACHE}
1060
+ clang_location=${CLANG_LOCATION}
1061
+ libpython_path=${LIBPYTHON_PATH}
1062
+ python_include_dir=${PYTHON_INCLUDE_DIR}
1063
+ python_binary=${PYTHON_BINARY}
1064
+ sdkroot=${SDKROOT}
1065
+ "@
1066
+ Write-Output $Context | Out-File -FilePath $env:GITHUB_OUTPUT -Encoding utf8 -Append
1063
1067
1064
1068
- name : Configure Compilers
1065
1069
env :
0 commit comments