From 7f57d1ee0e4085ff1d8ba3bbdfd4663b522c9f03 Mon Sep 17 00:00:00 2001 From: Euan Harris Date: Mon, 22 Sep 2025 10:32:30 +0100 Subject: [PATCH] ci: Add --skip flags for Swift 6.2 matrix job Motivation ---------- Swift NIO's unit test matrix job has been [updated for Swift 6.2](https://github.com/apple/swift-nio/pull/3374), so additional override flags must be defined. Modifications ------------- Define `linux_6.2_arguments_override` for pull requests and the scheduled build on main. Result ------ Tests with Swift 6.2 will pass. Test Plan --------- Existing tests pass again. --- .github/workflows/main.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 4f11c27..0bd35a1 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -16,6 +16,7 @@ jobs: linux_5_10_enabled: false linux_6_0_arguments_override: "--skip SmokeTests --skip TarInteropTests" linux_6_1_arguments_override: "--skip SmokeTests --skip TarInteropTests" + linux_6_2_arguments_override: "--skip SmokeTests --skip TarInteropTests" linux_nightly_6_1_arguments_override: "--skip SmokeTests --skip TarInteropTests" linux_nightly_main_arguments_override: "--skip SmokeTests --skip TarInteropTests"