Some checks failed
Dependency builds / Build web (pull_request) Has been skipped
Dependency builds / Build desktop (pull_request) Has been skipped
Dependency builds / Test native MTP (pull_request) Has been skipped
Dependency builds / Build mobile (pull_request) Has been skipped
/ build-web (push) Failing after 3m32s
/ build-desktop (linux) (push) Failing after 2m47s
/ build-mobile (push) Failing after 5m29s
/ release (push) Has been skipped
64 lines
2.1 KiB
YAML
64 lines
2.1 KiB
YAML
name: Dependency builds
|
|
|
|
on:
|
|
pull_request:
|
|
|
|
env:
|
|
NIX_CONFIG: experimental-features = nix-command flakes
|
|
FORGEJO_TOKEN: ""
|
|
GITHUB_TOKEN: ""
|
|
|
|
jobs:
|
|
web:
|
|
if: ${{ github.actor == 'rasensprenger' }}
|
|
name: Build web
|
|
runs-on: nixos
|
|
steps:
|
|
- run: nix profile add nixpkgs#nodejs_24
|
|
- uses: https://data.forgejo.org/actions/checkout@v4
|
|
with:
|
|
persist-credentials: false
|
|
- run: git submodule update --init --recursive
|
|
- run: nix develop .#electron --command pnpm install --frozen-lockfile
|
|
- run: nix develop .#electron --command pnpm run build:packages
|
|
- run: nix develop .#electron --command pnpm run build:web
|
|
|
|
desktop:
|
|
if: ${{ github.actor == 'rasensprenger' }}
|
|
name: Build desktop
|
|
runs-on: nixos
|
|
steps:
|
|
- run: nix profile add nixpkgs#nodejs_24
|
|
- uses: https://data.forgejo.org/actions/checkout@v4
|
|
with:
|
|
persist-credentials: false
|
|
- run: git submodule update --init --recursive
|
|
- run: nix develop .#electron --command pnpm install --frozen-lockfile
|
|
- run: nix develop .#electron --command pnpm run build:packages
|
|
- run: nix develop .#electron --command pnpm run build:desktop
|
|
|
|
native-mtp:
|
|
if: ${{ github.actor == 'rasensprenger' }}
|
|
name: Test native MTP
|
|
runs-on: nixos
|
|
steps:
|
|
- run: nix profile add nixpkgs#nodejs_24
|
|
- uses: https://data.forgejo.org/actions/checkout@v4
|
|
with:
|
|
persist-credentials: false
|
|
- run: git submodule update --init --recursive
|
|
- run: nix develop .#electron --command bash -lc 'cd apps/tauri/src-tauri && cargo test'
|
|
|
|
mobile:
|
|
if: ${{ github.actor == 'rasensprenger' }}
|
|
name: Build mobile
|
|
runs-on: nixos
|
|
steps:
|
|
- run: nix profile add nixpkgs#nodejs_24
|
|
- uses: https://data.forgejo.org/actions/checkout@v4
|
|
with:
|
|
persist-credentials: false
|
|
- run: git submodule update --init --recursive
|
|
- run: nix develop .#tauri --command pnpm install --frozen-lockfile
|
|
- run: nix develop .#tauri --command pnpm run build:packages
|
|
- run: nix develop .#tauri --command pnpm --dir apps/tauri run build:mobile:ci
|