Skip to content

Commit ac5e5e8

Browse files
authored
Update unit_tests.yml to remove Swift 5.9 job (#57)
Update unit_tests.yml to remove Swift 5.9 job since 5.9 is no longer supported
1 parent e3ade97 commit ac5e5e8

File tree

1 file changed

+1
-12
lines changed

1 file changed

+1
-12
lines changed

.github/workflows/unit_tests.yml

+1-12
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,6 @@ name: Unit tests
33
on:
44
workflow_call:
55
inputs:
6-
linux_5_9_enabled:
7-
type: boolean
8-
description: "Boolean to enable the Linux 5.9 Swift version matrix job. Defaults to true."
9-
default: true
10-
linux_5_9_arguments_override:
11-
type: string
12-
description: "The arguments passed to swift test in the Linux 5.9 Swift version matrix job."
13-
default: ""
146
linux_5_10_enabled:
157
type: boolean
168
description: "Boolean to enable the Linux 5.10 Swift version matrix job. Defaults to true."
@@ -61,9 +53,6 @@ jobs:
6153
matrix:
6254
# We are specifying only the major and minor of the docker images to automatically pick up the latest patch release
6355
swift:
64-
- image: "swift:5.9-jammy"
65-
swift_version: "5.9"
66-
enabled: ${{ inputs.linux_5_9_enabled }}
6756
- image: "swift:5.10-jammy"
6857
swift_version: "5.10"
6958
enabled: ${{ inputs.linux_5_10_enabled }}
@@ -95,7 +84,7 @@ jobs:
9584
env:
9685
SWIFT_VERSION: ${{ matrix.swift.swift_version }}
9786
COMMAND: "swift test"
98-
COMMAND_OVERRIDE_5_9: "swift test ${{ inputs.linux_5_9_arguments_override }}"
87+
COMMAND_OVERRIDE_5_9: ""
9988
COMMAND_OVERRIDE_5_10: "swift test ${{ inputs.linux_5_10_arguments_override }}"
10089
COMMAND_OVERRIDE_6_0: "swift test ${{ inputs.linux_6_0_arguments_override }}"
10190
COMMAND_OVERRIDE_6_1: "swift test ${{ inputs.linux_6_1_arguments_override }}"

0 commit comments

Comments
 (0)