Skip to content

Commit

Permalink
Updating ci.yml to run macOS 11 (#679)
Browse files Browse the repository at this point in the history
  • Loading branch information
sophialee0416 authored Aug 13, 2021
1 parent 783bf9e commit 3f7487f
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .ado/templates/fluentui-apple-publish-nuget-job.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
jobs:
- job: fluentui_apple_publish_nuget
pool:
vmImage: 'macos-10.15'
vmImage: 'macos-11'
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
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ on:

jobs:
validation:
runs-on: macos-10.15
runs-on: macos-11
strategy:
fail-fast: true
steps:
Expand All @@ -26,7 +26,7 @@ jobs:
- name: validation
run: scripts/validation.sh
xcodebuild:
runs-on: macos-10.15
runs-on: macos-11
strategy:
fail-fast: false
matrix:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/podPublish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
- 0.2.[0-9]+_main_0.2
jobs:
Pod-Publish:
runs-on: macOS-10.15
runs-on: macOS-11

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion scripts/xcode_select_current_version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 3f7487f

Please sign in to comment.