From 0c2de365cd929b903ac4948b14a07fe0761a78c0 Mon Sep 17 00:00:00 2001 From: Rudro Samanta Date: Tue, 28 Apr 2026 11:52:18 -0700 Subject: [PATCH 1/2] Update Xcode to 16.4. --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1e98ecb..cbc205d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,7 +7,7 @@ on: branches: [ master ] env: - DEVELOPER_DIR: /Applications/Xcode_15.4.app + DEVELOPER_DIR: /Applications/Xcode_16.4.app jobs: NeedleFoundationTests: From 074fcfeb6292e56793ef7720248421366225de78 Mon Sep 17 00:00:00 2001 From: Rudro Samanta Date: Tue, 28 Apr 2026 11:59:53 -0700 Subject: [PATCH 2/2] Updated sim version as well --- .github/workflows/ci.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cbc205d..8ea913c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,7 +15,7 @@ jobs: steps: - uses: actions/checkout@v2 - name: "NeedleFoundationTests" - run: xcodebuild test -project NeedleFoundation.xcodeproj -scheme NeedleFoundation -destination 'platform=iOS Simulator,OS=17.5,name=iPhone 15' + run: xcodebuild test -project NeedleFoundation.xcodeproj -scheme NeedleFoundation -destination 'platform=iOS Simulator,OS=18.5,name=iPhone 16' NeedleGeneratorTests: runs-on: macos-latest steps: @@ -33,28 +33,28 @@ jobs: steps: - uses: actions/checkout@v2 - name: "NeedleSampleMVCApp" - run: xcodebuild build -project Sample/MVC/TicTacToe/TicTacToe.xcodeproj -scheme TicTacToe -destination 'platform=iOS Simulator,OS=17.5,name=iPhone 15' + run: xcodebuild build -project Sample/MVC/TicTacToe/TicTacToe.xcodeproj -scheme TicTacToe -destination 'platform=iOS Simulator,OS=18.5,name=iPhone 16' NeedleSampleMVCTests: runs-on: macos-latest steps: - uses: actions/checkout@v2 - name: "NeedleSampleMVCTests" - run: xcodebuild test -project Sample/MVC/TicTacToe/TicTacToe.xcodeproj -scheme TicTacToeTests -destination 'platform=iOS Simulator,OS=17.5,name=iPhone 15' + run: xcodebuild test -project Sample/MVC/TicTacToe/TicTacToe.xcodeproj -scheme TicTacToeTests -destination 'platform=iOS Simulator,OS=18.5,name=iPhone 16' NeedleSamplePluginizedApp: runs-on: macos-latest steps: - uses: actions/checkout@v2 - name: "NeedleSamplePluginizedApp" - run: xcodebuild build -project Sample/Pluginized/TicTacToe/TicTacToe.xcodeproj -scheme TicTacToe -destination 'platform=iOS Simulator,OS=17.5,name=iPhone 15' + run: xcodebuild build -project Sample/Pluginized/TicTacToe/TicTacToe.xcodeproj -scheme TicTacToe -destination 'platform=iOS Simulator,OS=18.5,name=iPhone 16' NeedleSamplePluginizedScoreSheetTests: runs-on: macos-latest steps: - uses: actions/checkout@v2 - name: "NeedleSamplePluginizedScoreSheetTests" - run: xcodebuild test -project Sample/Pluginized/TicTacToe/TicTacToe.xcodeproj -scheme ScoreSheetTests -destination 'platform=iOS Simulator,OS=17.5,name=iPhone 15' + run: xcodebuild test -project Sample/Pluginized/TicTacToe/TicTacToe.xcodeproj -scheme ScoreSheetTests -destination 'platform=iOS Simulator,OS=18.5,name=iPhone 16' NeedleSamplePluginizedTicTacToeCoreTests: runs-on: macos-latest steps: - uses: actions/checkout@v2 - name: "NeedleSamplePluginizedTicTacToeCoreTests" - run: xcodebuild test -project Sample/Pluginized/TicTacToe/TicTacToe.xcodeproj -scheme TicTacToeCoreTests -destination 'platform=iOS Simulator,OS=17.5,name=iPhone 15' + run: xcodebuild test -project Sample/Pluginized/TicTacToe/TicTacToe.xcodeproj -scheme TicTacToeCoreTests -destination 'platform=iOS Simulator,OS=18.5,name=iPhone 16'