@@ -189,60 +189,61 @@ jobs:
189189
190190 # ─────────────────────────────────────────────────────────────
191191 # Build Verification (macOS only - Linux/Windows covered by e2e-desktop)
192+ # Disabled until macOS signing key is available
192193 # ─────────────────────────────────────────────────────────────
193- build :
194- needs : [rust-check, ts-check]
195- runs-on : macos-latest
196- env :
197- MACOSX_DEPLOYMENT_TARGET : ' 10.13'
198- steps :
199- - uses : actions/checkout@v4
200-
201- - uses : dtolnay/rust-toolchain@stable
202- with :
203- targets : aarch64-apple-darwin
204-
205- - uses : Swatinem/rust-cache@v2
206- with :
207- key : aarch64-apple-darwin
208- shared-key : rust-aarch64-apple-darwin
209- cache-on-failure : true
210-
211- - uses : pnpm/action-setup@v4
212- - uses : actions/setup-node@v4
213- with :
214- node-version : 20
215- cache : ' pnpm'
216-
217- # Cache pnpm store
218- - name : Get pnpm store directory
219- shell : bash
220- run : echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
221-
222- - name : Cache pnpm store
223- uses : actions/cache@v4
224- with :
225- path : ${{ env.STORE_PATH }}
226- key : pnpm-store-${{ runner.os }}-${{ hashFiles('**/pnpm-lock.yaml') }}
227- restore-keys : |
228- pnpm-store-${{ runner.os }}-
229-
230- # Cache Tauri CLI binary
231- - name : Cache Tauri CLI
232- uses : actions/cache@v4
233- with :
234- path : |
235- ~/.cargo/bin/cargo-tauri*
236- ~/.cargo/bin/tauri*
237- key : tauri-cli-${{ runner.os }}-${{ hashFiles('**/Cargo.lock') }}
238- restore-keys : |
239- tauri-cli-${{ runner.os }}-
240-
241- - run : pnpm install --frozen-lockfile
242- - run : pnpm build
243- env :
244- TAURI_SIGNING_PRIVATE_KEY : ${{ secrets.TAURI_SIGNING_PRIVATE_KEY }}
245- TAURI_SIGNING_PRIVATE_KEY_PASSWORD : ${{ secrets.TAURI_SIGNING_PRIVATE_KEY_PASSWORD }}
194+ # build:
195+ # needs: [rust-check, ts-check]
196+ # runs-on: macos-latest
197+ # env:
198+ # MACOSX_DEPLOYMENT_TARGET: '10.13'
199+ # steps:
200+ # - uses: actions/checkout@v4
201+ #
202+ # - uses: dtolnay/rust-toolchain@stable
203+ # with:
204+ # targets: aarch64-apple-darwin
205+ #
206+ # - uses: Swatinem/rust-cache@v2
207+ # with:
208+ # key: aarch64-apple-darwin
209+ # shared-key: rust-aarch64-apple-darwin
210+ # cache-on-failure: true
211+ #
212+ # - uses: pnpm/action-setup@v4
213+ # - uses: actions/setup-node@v4
214+ # with:
215+ # node-version: 20
216+ # cache: 'pnpm'
217+ #
218+ # # Cache pnpm store
219+ # - name: Get pnpm store directory
220+ # shell: bash
221+ # run: echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
222+ #
223+ # - name: Cache pnpm store
224+ # uses: actions/cache@v4
225+ # with:
226+ # path: ${{ env.STORE_PATH }}
227+ # key: pnpm-store-${{ runner.os }}-${{ hashFiles('**/pnpm-lock.yaml') }}
228+ # restore-keys: |
229+ # pnpm-store-${{ runner.os }}-
230+ #
231+ # # Cache Tauri CLI binary
232+ # - name: Cache Tauri CLI
233+ # uses: actions/cache@v4
234+ # with:
235+ # path: |
236+ # ~/.cargo/bin/cargo-tauri*
237+ # ~/.cargo/bin/tauri*
238+ # key: tauri-cli-${{ runner.os }}-${{ hashFiles('**/Cargo.lock') }}
239+ # restore-keys: |
240+ # tauri-cli-${{ runner.os }}-
241+ #
242+ # - run: pnpm install --frozen-lockfile
243+ # - run: pnpm build
244+ # env:
245+ # TAURI_SIGNING_PRIVATE_KEY: ${{ secrets.TAURI_SIGNING_PRIVATE_KEY }}
246+ # TAURI_SIGNING_PRIVATE_KEY_PASSWORD: ${{ secrets.TAURI_SIGNING_PRIVATE_KEY_PASSWORD }}
246247
247248 # ─────────────────────────────────────────────────────────────
248249 # Test Results Report (separate checks per test type and OS)
0 commit comments