Skip to content

Commit

Permalink
Use Swift 5.10.0 in CI; the new release broke the setup swift action.
Browse files Browse the repository at this point in the history
  • Loading branch information
dabrahams committed Sep 17, 2024
1 parent d978f73 commit 2cfd0d1
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ on:
- ".editorconfig"

env:
swift-version: '5.10'
swift-version: '5.10.0'

jobs:
dev-container:
Expand Down Expand Up @@ -137,7 +137,8 @@ jobs:
tag: ${{ env.swift-version }}-RELEASE

- name: Verify swift version
run: swift --version && swift --version | grep -q ${{ env.swift-version }}
# temporarily hardcoding a check for 5.10 since we need env.swift-version='5.10.0'
run: swift --version && swift --version | grep -q '5\.10' # ${{ env.swift-version }}
shell: bash

- name: Set up latest CMake and Ninja
Expand Down

0 comments on commit 2cfd0d1

Please sign in to comment.