From 084e8b4ceeea445d0ee9e6eee52c01b944db6eb0 Mon Sep 17 00:00:00 2001 From: Dominic Seung Date: Thu, 20 Aug 2026 02:32:56 -0700 Subject: [PATCH 1/3] remove concurrency --- .github/workflows/lint.yml | 4 ---- .github/workflows/test-android.yml | 4 ---- .github/workflows/test-ios.yml | 4 ---- .github/workflows/test-web.yml | 4 ---- .github/workflows/typecheck.yml | 4 ---- 5 files changed, 20 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 883b2e4..d1f6177 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -1,9 +1,5 @@ name: Lint -concurrency: - group: ${{ github.workflow }}-${{ github.ref }} - cancel-in-progress: true - on: workflow_dispatch: pull_request: diff --git a/.github/workflows/test-android.yml b/.github/workflows/test-android.yml index e8ab889..7db2c32 100644 --- a/.github/workflows/test-android.yml +++ b/.github/workflows/test-android.yml @@ -1,9 +1,5 @@ name: Build Android App -concurrency: - group: ${{ github.workflow }}-${{ github.ref }} - cancel-in-progress: true - on: workflow_dispatch: pull_request: diff --git a/.github/workflows/test-ios.yml b/.github/workflows/test-ios.yml index 8c87eb6..d40b286 100644 --- a/.github/workflows/test-ios.yml +++ b/.github/workflows/test-ios.yml @@ -1,9 +1,5 @@ name: Test iOS App -concurrency: - group: ${{ github.workflow }}-${{ github.ref }} - cancel-in-progress: true - on: workflow_dispatch: pull_request: diff --git a/.github/workflows/test-web.yml b/.github/workflows/test-web.yml index 5a4aff3..72de45a 100644 --- a/.github/workflows/test-web.yml +++ b/.github/workflows/test-web.yml @@ -1,9 +1,5 @@ name: Test Website -concurrency: - group: ${{ github.workflow }}-${{ github.ref }} - cancel-in-progress: true - on: workflow_dispatch: pull_request: diff --git a/.github/workflows/typecheck.yml b/.github/workflows/typecheck.yml index fa77517..6725922 100644 --- a/.github/workflows/typecheck.yml +++ b/.github/workflows/typecheck.yml @@ -1,9 +1,5 @@ name: Typecheck -concurrency: - group: ${{ github.workflow }}-${{ github.ref }} - cancel-in-progress: true - on: workflow_dispatch: pull_request: From 050fc1585923cbe3a3a6f7274736692eca505a87 Mon Sep 17 00:00:00 2001 From: Dominic Seung Date: Thu, 20 Aug 2026 02:33:02 -0700 Subject: [PATCH 2/3] switch to xcode 26.2 --- .github/workflows/build-ios.yml | 5 +++++ .github/workflows/test-ios.yml | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/.github/workflows/build-ios.yml b/.github/workflows/build-ios.yml index 4b65aa0..3986892 100644 --- a/.github/workflows/build-ios.yml +++ b/.github/workflows/build-ios.yml @@ -12,6 +12,11 @@ jobs: steps: - uses: actions/checkout@v6 + - name: Select Xcode 26.2 + run: | + sudo xcode-select -s /Applications/Xcode_26.2.app + xcodebuild -version + - uses: oven-sh/setup-bun@v2 with: bun-version: latest diff --git a/.github/workflows/test-ios.yml b/.github/workflows/test-ios.yml index d40b286..4e9d76d 100644 --- a/.github/workflows/test-ios.yml +++ b/.github/workflows/test-ios.yml @@ -11,6 +11,11 @@ jobs: steps: - uses: actions/checkout@v6 + - name: Select Xcode 26.2 + run: | + sudo xcode-select -s /Applications/Xcode_26.2.app + xcodebuild -version + - uses: oven-sh/setup-bun@v2 with: bun-version: latest From 4eea4ea696191311c18a1f3802e0618fe069fd15 Mon Sep 17 00:00:00 2001 From: Dominic Seung Date: Thu, 20 Aug 2026 03:03:28 -0700 Subject: [PATCH 3/3] pin mmkvappextension to 2.4.0 --- apps/mobile/plugins/withAddPodDepsToTargets.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/mobile/plugins/withAddPodDepsToTargets.ts b/apps/mobile/plugins/withAddPodDepsToTargets.ts index 4df6453..7dc0aa1 100644 --- a/apps/mobile/plugins/withAddPodDepsToTargets.ts +++ b/apps/mobile/plugins/withAddPodDepsToTargets.ts @@ -9,7 +9,7 @@ target "StatusWidget" do use_frameworks! :linkage => podfile_properties['ios.useFrameworks'].to_sym if podfile_properties['ios.useFrameworks'] use_frameworks! :linkage => ENV['USE_FRAMEWORKS'].to_sym if ENV['USE_FRAMEWORKS'] - pod "MMKVAppExtension" + pod "MMKVAppExtension", '2.4.0' end `;