Skip to content

Commit

Permalink
[CI] Run some jobs with Swift 5.8 / Xcode 14.3 (#392)
Browse files Browse the repository at this point in the history
  • Loading branch information
jpsim authored Apr 24, 2023
1 parent c80ecf7 commit 948991e
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/bazel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,15 @@ on:

jobs:
MacOS:
runs-on: macos-12
runs-on: macos-13
steps:
- uses: actions/checkout@v3
- name: Apple tests
run: bazelisk test //Tests/...
Linux:
strategy:
matrix:
tag: ['5.4', '5.5', '5.6', '5.7']
tag: ['5.4', '5.5', '5.6', '5.7', '5.8']
runs-on: ubuntu-latest
container:
image: swift:${{ matrix.tag }}-focal
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ jobs:
CMake:
strategy:
matrix:
xcode_version: ['14.2']
runs-on: macos-12
xcode_version: ['14.2', '14.3']
runs-on: macos-13
env:
DEVELOPER_DIR: /Applications/Xcode_${{ matrix.xcode_version }}.app
steps:
Expand All @@ -42,7 +42,7 @@ jobs:
CMake_Linux:
strategy:
matrix:
tag: ['5.6', '5.7']
tag: ['5.6', '5.7', '5.8']
runs-on: ubuntu-latest
container:
image: swift:${{ matrix.tag }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pod_lib_lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ on:
jobs:
pod_lib_lint:
name: pod lib lint
runs-on: macos-12
runs-on: macos-13
env:
DEVELOPER_DIR: /Applications/Xcode_14.2.app
DEVELOPER_DIR: /Applications/Xcode_14.3.app
steps:
- uses: actions/checkout@v3
- run: bundle install --path vendor/bundle
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/swiftlint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
SwiftLint:
runs-on: ubuntu-latest
container:
image: ghcr.io/realm/swiftlint:0.50.3
image: ghcr.io/realm/swiftlint:0.51.0
steps:
- uses: actions/checkout@v3
- name: SwiftLint
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/swiftlint_analyze.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ on:

jobs:
Analyze:
runs-on: macos-12
runs-on: macos-13
env:
DEVELOPER_DIR: /Applications/Xcode_14.2.app
DEVELOPER_DIR: /Applications/Xcode_14.3.app
steps:
- uses: actions/checkout@v3
- name: Generate xcodebuild.log
Expand Down
1 change: 1 addition & 0 deletions .swiftlint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ included:
- Sources
- Tests
disabled_rules:
- blanket_disable_command
- todo
analyzer_rules:
- unused_import
Expand Down

0 comments on commit 948991e

Please sign in to comment.