From 04820d62016f1c2d340af0197737b5ba07cb1aff Mon Sep 17 00:00:00 2001 From: "Takuto NAKAMURA (Kyome)" Date: Mon, 13 Jan 2025 14:14:38 +0900 Subject: [PATCH] Use Xcode 16.2 with macos-15 --- .github/workflows/deploy_docc.yml | 2 +- .github/workflows/test.yml | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/deploy_docc.yml b/.github/workflows/deploy_docc.yml index 2ab976e..d3f4ec5 100644 --- a/.github/workflows/deploy_docc.yml +++ b/.github/workflows/deploy_docc.yml @@ -15,7 +15,7 @@ concurrency: jobs: build: - runs-on: macos-14 + runs-on: macos-15 env: DEVELOPER_DIR: /Applications/Xcode_16.2.app/Contents/Developer diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f297ccb..83adf86 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -13,10 +13,10 @@ concurrency: jobs: test: name: Test - runs-on: macos-14 + runs-on: macos-15 timeout-minutes: 30 env: - DEVELOPER_DIR: "/Applications/Xcode_16.1.app/Contents/Developer" + DEVELOPER_DIR: "/Applications/Xcode_16.2.app/Contents/Developer" steps: - name: Checkout @@ -31,7 +31,7 @@ jobs: -project Examples/Examples.xcodeproj \ -scheme Examples \ -only-testing:WebUITests \ - -destination "platform=iOS Simulator,name=iPhone 16,OS=18.1" \ + -destination "platform=iOS Simulator,name=iPhone 16,OS=18.2" \ -derivedDataPath DerivedData \ -resultBundlePath TestResults/unit_test_result_bundle | \ xcbeautify && exit ${PIPESTATUS[0]} @@ -42,7 +42,7 @@ jobs: -project Examples/Examples.xcodeproj \ -scheme Examples \ -only-testing:ExamplesUITests \ - -destination "platform=iOS Simulator,name=iPhone 16,OS=18.1" \ + -destination "platform=iOS Simulator,name=iPhone 16,OS=18.2" \ -derivedDataPath DerivedData \ -resultBundlePath TestResults/ui_test_result_bundle | \ xcbeautify && exit ${PIPESTATUS[0]}