diff options
| author | Dax <[email protected]> | 2026-01-29 14:16:26 -0500 |
|---|---|---|
| committer | GitHub <[email protected]> | 2026-01-29 19:16:26 +0000 |
| commit | a92b7923c2baff2d0e6fd59e5ad4cd22790553ae (patch) | |
| tree | e633f6cb32a74ca478c53126e54ac275a0882ed3 /.github/workflows/nix-desktop.yml.disabled | |
| parent | cf5cf7b23e55cf05741ccfd6e2cc71b3a0a7d108 (diff) | |
| download | opencode-a92b7923c2baff2d0e6fd59e5ad4cd22790553ae.tar.gz opencode-a92b7923c2baff2d0e6fd59e5ad4cd22790553ae.zip | |
ci: disable nix-desktop workflow (#11188)
Diffstat (limited to '.github/workflows/nix-desktop.yml.disabled')
| -rw-r--r-- | .github/workflows/nix-desktop.yml.disabled | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/.github/workflows/nix-desktop.yml.disabled b/.github/workflows/nix-desktop.yml.disabled new file mode 100644 index 000000000..e14dce96b --- /dev/null +++ b/.github/workflows/nix-desktop.yml.disabled @@ -0,0 +1,37 @@ +name: nix-desktop + +on: + pull_request: + paths: + - "flake.nix" + - "flake.lock" + - "nix/**" + - "packages/app/**" + - "packages/desktop/**" + - ".github/workflows/nix-desktop.yml" + workflow_dispatch: + +jobs: + nix-desktop: + strategy: + fail-fast: false + matrix: + os: + - blacksmith-4vcpu-ubuntu-2404 + - blacksmith-4vcpu-ubuntu-2404-arm + - macos-15-intel + - macos-latest + runs-on: ${{ matrix.os }} + timeout-minutes: 60 + steps: + - name: Checkout repository + uses: actions/checkout@v6 + + - name: Setup Nix + uses: nixbuild/nix-quick-install-action@v34 + + - name: Build desktop via flake + run: | + set -euo pipefail + nix --version + nix build .#desktop -L |
