Skip to content

Commit cdb5674

Browse files
authored
build-using-self: Do not set unnecessary env var (#8859)
The SWIFTPM_CUSTOM_BIN_DIR environment variable was set as it was required by the Integration Tests when they were standalone Package. Since merging the Integration Tests Package with the SwiftPM package Tests, setting the environment variable is no longer necessary. Update the `build-using-self` script to no longer set this environment variable.
1 parent 55e284e commit cdb5674

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

Utilities/build-using-self

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -137,9 +137,6 @@ def set_environment(
137137
) -> None:
138138
os.environ["SWIFTCI_IS_SELF_HOSTED"] = "1"
139139

140-
# Set the SWIFTPM_CUSTOM_BIN_DIR path
141-
os.environ["SWIFTPM_CUSTOM_BIN_DIR"] = str(swiftpm_bin_dir)
142-
143140
# Ensure SDKROOT is configure
144141
if is_on_darwin():
145142
sdk_root = call_output(shlex.split("xcrun --show-sdk-path --sdk macosx"))

0 commit comments

Comments
 (0)