diff --git a/.github/workflows/benchmarks.yml b/.github/workflows/benchmarks.yml index ea27bd4080e..4dfe0517b87 100644 --- a/.github/workflows/benchmarks.yml +++ b/.github/workflows/benchmarks.yml @@ -12,8 +12,8 @@ on: description: "Arguments to the switch package command invocation e.g. `--disable-sandbox`" linux_5_9_enabled: type: boolean - description: "Boolean to enable the Linux 5.9 Swift version matrix job. Defaults to true." - default: true + description: "Boolean to enable the Linux 5.9 Swift version matrix job. Defaults to false." + default: false linux_5_10_enabled: type: boolean description: "Boolean to enable the Linux 5.10 Swift version matrix job. Defaults to true." diff --git a/.github/workflows/cxx_interop.yml b/.github/workflows/cxx_interop.yml index b92c3fb0bd9..ebfcfc67547 100644 --- a/.github/workflows/cxx_interop.yml +++ b/.github/workflows/cxx_interop.yml @@ -5,8 +5,8 @@ on: inputs: linux_5_9_enabled: type: boolean - description: "Boolean to enable the Linux 5.9 Swift version matrix job. Defaults to true." - default: true + description: "Boolean to enable the Linux 5.9 Swift version matrix job. Defaults to false." + default: false linux_5_10_enabled: type: boolean description: "Boolean to enable the Linux 5.10 Swift version matrix job. Defaults to true." diff --git a/.github/workflows/swift_matrix.yml b/.github/workflows/swift_matrix.yml index 6d501bb6ee3..20badb616ff 100644 --- a/.github/workflows/swift_matrix.yml +++ b/.github/workflows/swift_matrix.yml @@ -13,8 +13,8 @@ on: required: true matrix_linux_5_9_enabled: type: boolean - description: "Boolean to enable the 5.9 Swift version matrix job. Defaults to true." - default: true + description: "Boolean to enable the 5.9 Swift version matrix job. Defaults to false." + default: false matrix_linux_5_9_container_image: type: string description: "Container image for the 5.9 Swift version matrix job. Defaults to matching Swift Ubuntu image." diff --git a/.github/workflows/unit_tests.yml b/.github/workflows/unit_tests.yml index 8b153fd3f5f..82bdf46fb1b 100644 --- a/.github/workflows/unit_tests.yml +++ b/.github/workflows/unit_tests.yml @@ -5,8 +5,8 @@ on: inputs: linux_5_9_enabled: type: boolean - description: "Boolean to enable the Linux 5.9 Swift version matrix job. Defaults to true." - default: true + description: "Boolean to enable the Linux 5.9 Swift version matrix job. Defaults to false." + default: false linux_5_9_arguments_override: type: string description: "The arguments passed to swift test in the Linux 5.9 Swift version matrix job." diff --git a/scripts/generate_matrix.sh b/scripts/generate_matrix.sh index 6d94b6e88b0..675e1aa1266 100755 --- a/scripts/generate_matrix.sh +++ b/scripts/generate_matrix.sh @@ -16,7 +16,7 @@ # Parameters linux_command="$MATRIX_LINUX_COMMAND" # required if any Linux pipeline is enabled linux_setup_command="$MATRIX_LINUX_SETUP_COMMAND" -linux_5_9_enabled="${MATRIX_LINUX_5_9_ENABLED:=true}" +linux_5_9_enabled="${MATRIX_LINUX_5_9_ENABLED:=false}" linux_5_9_command_arguments="$MATRIX_LINUX_5_9_COMMAND_ARGUMENTS" linux_5_10_enabled="${MATRIX_LINUX_5_10_ENABLED:=true}" linux_5_10_command_arguments="$MATRIX_LINUX_5_10_COMMAND_ARGUMENTS"