Update to build on the latest macOS 12 image using Xcode 13.3. (#956)

* Update to build on the latest macOS 12 image using Xcode 13.3.

* Update CI pipelines to use macOS 12 image as well.

* More macOS 12 image changes.

* Use the new 'internal-macos12' VM image now that ADO has one.
This commit is contained in:
Erik Schwiebert 2022-04-14 10:19:17 -07:00 коммит произвёл GitHub
Родитель 5959f9231f
Коммит ef206dd24e
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
4 изменённых файлов: 5 добавлений и 5 удалений

Просмотреть файл

@ -8,7 +8,7 @@ jobs:
- job: fluentui_apple_publish_nuget
dependsOn: Compliance
pool:
vmImage: 'macos-11'
vmImage: 'internal-macos12'
variables:
- group: InfoSec-SecurityResults
- name: BUILDSECMON_OPT_IN

4
.github/workflows/ci.yml поставляемый
Просмотреть файл

@ -14,7 +14,7 @@ on:
jobs:
validation:
runs-on: macos-11
runs-on: macos-12
strategy:
fail-fast: true
steps:
@ -26,7 +26,7 @@ jobs:
- name: validation
run: scripts/validation.sh
xcodebuild:
runs-on: macos-11
runs-on: macos-12
strategy:
fail-fast: false
matrix:

2
.github/workflows/podPublish.yml поставляемый
Просмотреть файл

@ -7,7 +7,7 @@ on:
- 0.2.[0-9]+_main_0.2
jobs:
Pod-Publish:
runs-on: macos-11
runs-on: macos-12
steps:
- uses: actions/checkout@v2

Просмотреть файл

@ -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_13.1.app/Contents/Developer'
XCODE_PATH='/Applications/Xcode_13.3.app/Contents/Developer'
fi
echo "Running command: sudo xcode-select --switch $XCODE_PATH"