From c78e8869c480e333d40bb2a0585bec1198022cd2 Mon Sep 17 00:00:00 2001 From: Gabriel Lanata Date: Wed, 8 Jan 2025 02:30:29 -0800 Subject: [PATCH 1/2] Update macos --- .github/workflows/Test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/Test.yml b/.github/workflows/Test.yml index 46eb2b0..a23bf5e 100644 --- a/.github/workflows/Test.yml +++ b/.github/workflows/Test.yml @@ -31,7 +31,7 @@ jobs: run: make test-iPhone test_iphone_ios15: name: Test-iPhone-iOS15 - runs-on: macos-12 + runs-on: macos-13 steps: - name: Checkout uses: actions/checkout@v2 From ee3b7e0fd02840a6f4c3a4eeb5125eb37e45341e Mon Sep 17 00:00:00 2001 From: Gabriel Lanata Date: Wed, 8 Jan 2025 02:49:32 -0800 Subject: [PATCH 2/2] Update tests to use iOS 16 --- .github/workflows/Test.yml | 10 +++++----- Makefile | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/Test.yml b/.github/workflows/Test.yml index a23bf5e..6dc690c 100644 --- a/.github/workflows/Test.yml +++ b/.github/workflows/Test.yml @@ -29,16 +29,16 @@ jobs: run: make generate - name: Run tests run: make test-iPhone - test_iphone_ios15: - name: Test-iPhone-iOS15 + test_iphone_ios16: + name: Test-iPhone-iOS16 runs-on: macos-13 steps: - name: Checkout uses: actions/checkout@v2 - - name: Force Xcode 13.1 - run: sudo xcode-select -switch /Applications/Xcode_13.1.app + - name: Force Xcode 14.1 + run: sudo xcode-select -switch /Applications/Xcode_14.1.app - name: Make project run: make generate - name: Run tests - run: make test-iPhone-iOS15 + run: make test-iPhone-iOS16 diff --git a/Makefile b/Makefile index e4c2247..fcacd30 100644 --- a/Makefile +++ b/Makefile @@ -43,13 +43,13 @@ test-iPhone: test \ $(NO_CODE_SIGN_SETTINGS) | xcbeautify -test-iPhone-iOS15: +test-iPhone-iOS16: set -o pipefail && \ xcodebuild \ -project Hammer.xcodeproj \ -scheme Hammer \ - -destination "name=iPhone 11" \ - -sdk iphonesimulator15.0 \ + -destination "name=iPhone 14" \ + -sdk iphonesimulator16.1 \ test \ $(NO_CODE_SIGN_SETTINGS) | xcbeautify