mirror of
https://github.com/ivabus/gui
synced 2025-04-24 06:27:09 +03:00
prevent run
This commit is contained in:
parent
96f13036d8
commit
bc0e317cf2
1 changed files with 13 additions and 1 deletions
14
.github/workflows/ci.yml
vendored
14
.github/workflows/ci.yml
vendored
|
@ -114,9 +114,21 @@ jobs:
|
||||||
# name: linux+aarch64
|
# name: linux+aarch64
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: cache gui build
|
||||||
|
# TODO: cache issue in our self-hosted macos runner ESPIPE: invalid seek, read
|
||||||
|
# but its ok to ignore, its still the fastest builder
|
||||||
|
# NOTE: enabling cache in the self hosted runner slows down the pipeline by 4m because post-cache builder error ^
|
||||||
|
if: startsWith(matrix.platform.name, 'linux') || matrix.platform.name == 'darwin+x86-64'
|
||||||
|
uses: actions/cache@v3
|
||||||
|
with:
|
||||||
|
key: ${{matrix.platform.name}}-pnpm-cargo
|
||||||
|
path: |
|
||||||
|
./pnpm
|
||||||
|
|
||||||
build_tauri:
|
build_tauri:
|
||||||
needs: changes
|
needs: changes
|
||||||
if: needs.changes.outputs.desktop == 'true'
|
if: false
|
||||||
runs-on: ${{ matrix.platform.os }}
|
runs-on: ${{ matrix.platform.os }}
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
|
|
Loading…
Reference in a new issue