From b4b6f52b960cc9bbdbf5f3da5c2abb940ad8e5f2 Mon Sep 17 00:00:00 2001 From: Jake Petroules Date: Thu, 4 Dec 2025 00:23:56 -0800 Subject: [PATCH] Rename install-swift-nightly.ps1 to install-swift-nightly-main.ps1 This script is only used when Docker is enabled, and the workflow was using the wrong name, leading to build failures. e.g. https://github.com/swiftlang/swift-build/actions/runs/19923980997/job/57119158460?pr=954 Easiest solution is to rename the file. For Docker, both "nightly" and "nightly-main" tags exist, so we can just use "nightly-main" which is both more consistent with other platforms and easier to use across the board. --- ...install-swift-nightly.ps1 => install-swift-nightly-main.ps1} | 0 .github/workflows/swift_package_test.yml | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename .github/workflows/scripts/windows/swift/{install-swift-nightly.ps1 => install-swift-nightly-main.ps1} (100%) diff --git a/.github/workflows/scripts/windows/swift/install-swift-nightly.ps1 b/.github/workflows/scripts/windows/swift/install-swift-nightly-main.ps1 similarity index 100% rename from .github/workflows/scripts/windows/swift/install-swift-nightly.ps1 rename to .github/workflows/scripts/windows/swift/install-swift-nightly-main.ps1 diff --git a/.github/workflows/swift_package_test.yml b/.github/workflows/swift_package_test.yml index 6ff0b18..82978ae 100644 --- a/.github/workflows/swift_package_test.yml +++ b/.github/workflows/swift_package_test.yml @@ -78,7 +78,7 @@ on: type: string description: "Include Windows Swift version list (JSON)" # "5.10" is omitted for Windows because the container image is broken. - default: "[\"5.9\", \"6.0\", \"6.1\", \"6.2\", \"nightly\", \"nightly-6.2\"]" + default: "[\"5.9\", \"6.0\", \"6.1\", \"6.2\", \"nightly-main\", \"nightly-6.2\"]" windows_exclude_swift_versions: type: string description: "Exclude Windows Swift version list (JSON)"