Skip to content

Commit ff9e63b

Browse files
committed
wip: Force no host toolchain to avoid downloads
1 parent bb2bffa commit ff9e63b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Tests/SwiftSDKGeneratorTests/EndToEndTests.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ final class RepeatedBuildTests: XCTestCase {
124124

125125
// Test that an existing SDK can be rebuilt without cleaning up.
126126
// Test with no arguments by default:
127-
var possibleArguments = ["--host-toolchain"]
127+
var possibleArguments = ["--no-host-toolchain"]
128128
do {
129129
try await Shell.run("podman ps")
130130
possibleArguments.append("--with-docker --linux-distribution-name rhel --linux-distribution-version ubi9")
@@ -176,7 +176,7 @@ struct SDKConfiguration {
176176
var sdkGeneratorArguments: String {
177177
return [
178178
"--sdk-name \(bundleName)",
179-
"--host-toolchain",
179+
"--no-host-toolchain",
180180
withDocker ? "--with-docker" : nil,
181181
"--swift-version \(swiftVersion)-RELEASE",
182182
testLinuxSwiftSDKs ? "--host \(hostArch!)-unknown-linux-gnu" : nil,

0 commit comments

Comments
 (0)