Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit b386f72

Browse files
committedMar 6, 2025·
remove unnecessary ENV vraiable SWIFT_VERSION
1 parent 8576867 commit b386f72

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed
 

‎.github/workflows/integration_tests.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,6 @@ jobs:
5959
# We are using only one Swift version
6060
swift:
6161
- image: ${{ inputs.matrix_linux_swift_container_image }}
62-
swift_version: "6.0.3-amazonlinux2"
6362
container:
6463
image: ${{ matrix.swift.image }}
6564
steps:
@@ -93,7 +92,6 @@ jobs:
9392
- name: Run matrix job
9493
working-directory: ${{ github.event.repository.name }} # until we can use action/checkout@v4
9594
env:
96-
SWIFT_VERSION: ${{ matrix.swift.swift_version }}
9795
COMMAND: ${{ inputs.matrix_linux_command }}
9896
EXAMPLE: ${{ matrix.examples }}
9997
run: |

‎.github/workflows/scripts/integration_tests.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ log() { printf -- "** %s\n" "$*" >&2; }
1919
error() { printf -- "** ERROR: %s\n" "$*" >&2; }
2020
fatal() { error "$@"; exit 1; }
2121

22+
SWIFT_VERSION=$(swift --version)
2223
test -n "${SWIFT_VERSION:-}" || fatal "SWIFT_VERSION unset"
2324
test -n "${COMMAND:-}" || fatal "COMMAND unset"
2425
test -n "${EXAMPLE:-}" || fatal "EXAMPLE unset"

0 commit comments

Comments
 (0)
Please sign in to comment.