Skip to content

Commit d8ea6ca

Browse files
authored
Update CI to Xcode 13RC (#8676)
1 parent d191d0e commit d8ea6ca

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

.github/workflows/inappmessaging.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,10 @@ jobs:
3535
runs-on: macos-11
3636
strategy:
3737
matrix:
38-
platform: [iOS, iPad]
38+
# TODO(#8682): Reenable iPad after fixing Xcode 13 test failures.
39+
# platform: [iOS, iPad]
40+
platform: [iOS]
41+
3942
steps:
4043
- uses: actions/checkout@v2
4144
- name: Setup Bundler

FirebaseStorageSwift/Sources/AsyncAwait.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
import FirebaseStorage
1616

17-
#if swift(>=5.5)
17+
#if compiler(>=5.5) && canImport(_Concurrency)
1818
@available(iOS 15, tvOS 15, macOS 12, watchOS 8, *)
1919
public extension StorageReference {
2020
/// Asynchronously downloads the object at the StorageReference to a Data object in memory.

scripts/setup_bundler.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,10 @@
2020
# - Uncomment the following line and choose the alternative Xcode version.
2121
#sudo xcode-select -s /Applications/Xcode_13.0.app/Contents/Developer
2222

23+
# TODO(paulb777): Remove once Xcode 13 becomes the default version in macOS 11.
24+
# https://github.com/actions/virtual-environments/blob/main/images/macos/macos-11-Readme.md#xcode
25+
sudo xcode-select -s /Applications/Xcode_13.0.app/Contents/Developer
26+
2327
bundle update --bundler # ensure bundler version is high enough for Gemfile.lock
2428
bundle install
2529
bundle --version

0 commit comments

Comments
 (0)