From 64b220a10f49e7ff59352aa265ce31c5a69aaa91 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Simon=20Lars=C3=A9n?= Date: Sat, 2 May 2026 08:47:16 +0200 Subject: [PATCH 1/2] ci(lite): use Xcode 26.3 to fix build error --- .github/workflows/lite.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/lite.yml b/.github/workflows/lite.yml index 9e664463b0f..5f157745564 100644 --- a/.github/workflows/lite.yml +++ b/.github/workflows/lite.yml @@ -37,6 +37,9 @@ jobs: run: | sudo apt-get update sudo apt-get -y install pkg-config libxss-dev libdbus-1-dev + - name: Select Xcode 26.3 + if: runner.os == 'macOS' + run: sudo xcode-select -s /Applications/Xcode_26.3.app - uses: ./.github/actions/init-env-node - name: Set version working-directory: apps/lite From 0784bf84af5030a3326c5ea2f4db14b1658ce69c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Simon=20Lars=C3=A9n?= Date: Sat, 2 May 2026 09:31:01 +0200 Subject: [PATCH 2/2] ci(lite): build lite on macOS 26 instead Using Xcode 26 on macOS 15 caused strange build issues, so let's just build on macOS 26 for now. --- .github/workflows/lite.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/lite.yml b/.github/workflows/lite.yml index 5f157745564..d9a7c9a0601 100644 --- a/.github/workflows/lite.yml +++ b/.github/workflows/lite.yml @@ -20,7 +20,7 @@ jobs: fail-fast: false matrix: include: - - platform: macos-15 # [macOs, ARM64] + - platform: macos-26 # [macOs, ARM64] - platform: ubuntu-22.04 # [linux, x64] - platform: windows-latest # [windows, x64] env: @@ -37,9 +37,6 @@ jobs: run: | sudo apt-get update sudo apt-get -y install pkg-config libxss-dev libdbus-1-dev - - name: Select Xcode 26.3 - if: runner.os == 'macOS' - run: sudo xcode-select -s /Applications/Xcode_26.3.app - uses: ./.github/actions/init-env-node - name: Set version working-directory: apps/lite