From 0dd2005d2b3f3a7c9afb9c1d36685d2599e6c6bc Mon Sep 17 00:00:00 2001 From: joshua-journey-apps Date: Sat, 23 Aug 2025 18:02:13 +0200 Subject: [PATCH 1/3] add test file --- test.txt | 1 + 1 file changed, 1 insertion(+) create mode 100644 test.txt diff --git a/test.txt b/test.txt new file mode 100644 index 00000000..30d74d25 --- /dev/null +++ b/test.txt @@ -0,0 +1 @@ +test \ No newline at end of file From cfb6161e7f4273d8226b121148b0368be0830441 Mon Sep 17 00:00:00 2001 From: joshua-journey-apps Date: Sat, 23 Aug 2025 18:44:39 +0200 Subject: [PATCH 2/3] pin macos runner to release 14 --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a8462ed0..1aaf71a2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -68,7 +68,7 @@ jobs: adb shell input keyevent 82 ./scripts/test-android.sh test-ios: - runs-on: macos-latest + runs-on: macos-14 env: TURBO_CACHE_DIR: .turbo/ios steps: @@ -109,7 +109,7 @@ jobs: ./scripts/test-ios.sh test-ios-embedded: - runs-on: macos-latest + runs-on: macos-14 env: TURBO_CACHE_DIR: .turbo/ios steps: @@ -150,7 +150,7 @@ jobs: ./scripts/test-ios.sh test-ios-sqlcipher: - runs-on: macos-latest + runs-on: macos-14 env: TURBO_CACHE_DIR: .turbo/ios steps: @@ -191,7 +191,7 @@ jobs: ./scripts/test-ios.sh test-ios-libsql: - runs-on: macos-latest + runs-on: macos-14 env: TURBO_CACHE_DIR: .turbo/ios steps: From 664deb89a3f62ae26879b13cb475abed60d523ff Mon Sep 17 00:00:00 2001 From: joshua-journey-apps Date: Sat, 23 Aug 2025 19:19:25 +0200 Subject: [PATCH 3/3] test xcode fix https://github.com/actions/runner-images/issues/12758#issuecomment-3187115656 --- .github/workflows/ci.yml | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1aaf71a2..bf84202a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -68,7 +68,7 @@ jobs: adb shell input keyevent 82 ./scripts/test-android.sh test-ios: - runs-on: macos-14 + runs-on: macos-latest env: TURBO_CACHE_DIR: .turbo/ios steps: @@ -104,12 +104,15 @@ jobs: env: NO_FLIPPER: 1 + - name: Select Xcode 16.4 + run: sudo xcode-select -s '/Applications/Xcode_16.4.app/Contents/Developer' + - name: run tests run: | ./scripts/test-ios.sh test-ios-embedded: - runs-on: macos-14 + runs-on: macos-latest env: TURBO_CACHE_DIR: .turbo/ios steps: @@ -145,12 +148,15 @@ jobs: env: NO_FLIPPER: 1 + - name: Select Xcode 16.4 + run: sudo xcode-select -s '/Applications/Xcode_16.4.app/Contents/Developer' + - name: run tests run: | ./scripts/test-ios.sh test-ios-sqlcipher: - runs-on: macos-14 + runs-on: macos-latest env: TURBO_CACHE_DIR: .turbo/ios steps: @@ -186,12 +192,15 @@ jobs: env: NO_FLIPPER: 1 + - name: Select Xcode 16.4 + run: sudo xcode-select -s '/Applications/Xcode_16.4.app/Contents/Developer' + - name: run tests run: | ./scripts/test-ios.sh test-ios-libsql: - runs-on: macos-14 + runs-on: macos-latest env: TURBO_CACHE_DIR: .turbo/ios steps: