From 0ae15f2eaebbf667f80851db192021975eef69c6 Mon Sep 17 00:00:00 2001 From: Rafael Amaral de Assis Date: Mon, 10 May 2021 14:36:20 -0700 Subject: [PATCH] Updating Xcode version to 12.5. --- .ado/templates/fluentui-apple-publish-nuget-job.yml | 2 +- .github/workflows/ci.yml | 4 ++-- .github/workflows/podPublish.yml | 2 +- README.md | 2 +- scripts/xcode_select_current_version.sh | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.ado/templates/fluentui-apple-publish-nuget-job.yml b/.ado/templates/fluentui-apple-publish-nuget-job.yml index a8f77bdf86..87ccb1acad 100644 --- a/.ado/templates/fluentui-apple-publish-nuget-job.yml +++ b/.ado/templates/fluentui-apple-publish-nuget-job.yml @@ -1,7 +1,7 @@ jobs: - job: fluentui_apple_publish_nuget pool: - vmImage: 'macos-10.15' + vmImage: 'macos-11.0' displayName: FluentUI Apple Publish NuGet timeoutInMinutes: 60 # how long to run the job before automatically cancelling cancelTimeoutInMinutes: 5 # how much time to give 'run always even if cancelled tasks' before killing them diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2b52e673fa..d2e8871807 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,7 +14,7 @@ on: jobs: validation: - runs-on: macos-10.15 + runs-on: macos-11.0 strategy: fail-fast: true steps: @@ -26,7 +26,7 @@ jobs: - name: validation run: scripts/validation.sh xcodebuild: - runs-on: macos-10.15 + runs-on: macos-11.0 strategy: fail-fast: false matrix: diff --git a/.github/workflows/podPublish.yml b/.github/workflows/podPublish.yml index ab7d7a90db..f1d1fc567d 100644 --- a/.github/workflows/podPublish.yml +++ b/.github/workflows/podPublish.yml @@ -7,7 +7,7 @@ on: jobs: Pod-Publish: if: github.event.base_ref == 'refs/heads/main' - runs-on: macOS-10.15 + runs-on: macOS-11.0 steps: - uses: actions/checkout@v2 diff --git a/README.md b/README.md index 23ee0a4f56..2e8ce76d40 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ Fluent UI Apple contains native UIKit and AppKit controls aligned with [Microsof #### Requirements - iOS 13+ or macOS 10.14+ -- Xcode 11+ +- Xcode 12.5+ - Swift 5.0+ #### Using Carthage diff --git a/scripts/xcode_select_current_version.sh b/scripts/xcode_select_current_version.sh index b7dacde048..6242f5aaf1 100755 --- a/scripts/xcode_select_current_version.sh +++ b/scripts/xcode_select_current_version.sh @@ -3,7 +3,7 @@ if [ -n "$XCODE_PATH_OVERRIDE" ]; then # If someone calls this with the XCODE_PATH_OVERRIDE variable set to a path to a developer dir, use it instead XCODE_PATH="$XCODE_PATH_OVERRIDE" else - XCODE_PATH='/Applications/Xcode_12.2.app/Contents/Developer' + XCODE_PATH='/Applications/Xcode_12.5.app/Contents/Developer' fi echo "Running command: sudo xcode-select --switch $XCODE_PATH"