From 6fa25a2a44d6bb045e71bee858305593405483ca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Danny=20M=C3=B6sch?= Date: Sun, 4 Aug 2024 16:38:16 +0200 Subject: [PATCH] Migrate Azure builds to Swift 5.10 (#5727) --- Gemfile | 2 +- Gemfile.lock | 12 ++++++------ azure-pipelines.yml | 12 ++++++------ 3 files changed, 13 insertions(+), 13 deletions(-) diff --git a/Gemfile b/Gemfile index d613241b20..e19d589da9 100644 --- a/Gemfile +++ b/Gemfile @@ -2,4 +2,4 @@ source 'https://rubygems.org' gem 'cocoapods' gem 'danger' -gem 'jazzy', '~> 0.14.4' +gem 'jazzy', '~> 0.15.1' diff --git a/Gemfile.lock b/Gemfile.lock index a7b45bde06..6058ee2b83 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -92,12 +92,12 @@ GEM httpclient (2.8.3) i18n (1.14.1) concurrent-ruby (~> 1.0) - jazzy (0.14.4) + jazzy (0.15.1) cocoapods (~> 1.5) mustache (~> 1.1) open4 (~> 1.3) redcarpet (~> 3.4) - rexml (~> 3.2) + rexml (>= 3.2.7, < 4.0) rouge (>= 2.0.6, < 5.0) sassc (~> 2.1) sqlite3 (~> 1.3) @@ -124,7 +124,7 @@ GEM redcarpet (3.6.0) rexml (3.2.8) strscan (>= 3.0.9) - rouge (4.2.0) + rouge (4.3.0) ruby-macho (2.5.1) ruby2_keywords (0.0.5) sassc (2.4.0) @@ -132,8 +132,8 @@ GEM sawyer (0.9.2) addressable (>= 2.3.5) faraday (>= 0.17.3, < 3) - sqlite3 (1.7.2-arm64-darwin) - sqlite3 (1.7.2-x86_64-linux) + sqlite3 (1.7.3-arm64-darwin) + sqlite3 (1.7.3-x86_64-linux) strscan (3.1.0) terminal-table (3.0.2) unicode-display_width (>= 1.1.1, < 3) @@ -161,7 +161,7 @@ PLATFORMS DEPENDENCIES cocoapods danger - jazzy (~> 0.14.4) + jazzy (~> 0.15.1) BUNDLED WITH 2.4.12 diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 60d981f294..17f5eea128 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -8,8 +8,8 @@ jobs: strategy: maxParallel: 10 matrix: - swift59: - containerImage: swift:5.9 + swift-5.10.1: + containerImage: swift:5.10.1 container: $[ variables['containerImage'] ] steps: - script: swift test --parallel -Xswiftc -DDISABLE_FOCUSED_EXAMPLES @@ -33,9 +33,9 @@ jobs: # displayName: xcodebuild test - job: CocoaPods pool: - vmImage: 'macOS-13' + vmImage: 'macOS-14' variables: - DEVELOPER_DIR: /Applications/Xcode_15.0.app + DEVELOPER_DIR: /Applications/Xcode_15.4.app steps: - script: bundle install --path vendor/bundle displayName: bundle install @@ -46,9 +46,9 @@ jobs: - job: jazzy pool: - vmImage: 'macOS-13' + vmImage: 'macOS-14' variables: - DEVELOPER_DIR: /Applications/Xcode_15.0.app + DEVELOPER_DIR: /Applications/Xcode_15.4.app steps: - script: swift run swiftlint generate-docs displayName: Run swiftlint generate-docs