mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-07-24 20:56:08 +03:00
![dependabot[bot]](/assets/img/avatar_default.png)
Bumps [cachix/install-nix-action](https://github.com/cachix/install-nix-action) from 23 to 24. - [Release notes](https://github.com/cachix/install-nix-action/releases) - [Commits](https://github.com/cachix/install-nix-action/compare/v23...v24) --- updated-dependencies: - dependency-name: cachix/install-nix-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
33 lines
989 B
YAML
33 lines
989 B
YAML
on: [push, pull_request]
|
|
name: Nix
|
|
jobs:
|
|
check-zig-cache-hash:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v4
|
|
- name: Setup Nix
|
|
uses: cachix/install-nix-action@v24
|
|
with:
|
|
nix_path: nixpkgs=channel:nixos-unstable
|
|
- name: Check Zig cache hash
|
|
run: nix develop -c ./nix/build-support/check-zig-cache-hash.sh
|
|
#
|
|
# NOTE: Build is disabled until we resolve dependency build speeds.
|
|
# build:
|
|
# needs: check-zig-cache-hash
|
|
# runs-on: ubuntu-latest
|
|
# steps:
|
|
# - name: Checkout code
|
|
# uses: actions/checkout@v4
|
|
# - name: Setup Nix
|
|
# uses: cachix/install-nix-action@v24
|
|
# with:
|
|
# nix_path: nixpkgs=channel:nixos-unstable
|
|
# - name: Setup Nix cache
|
|
# uses: DeterminateSystems/magic-nix-cache-action@main
|
|
# with:
|
|
# diagnostic-endpoint: "" # disable telemetry
|
|
# - name: Run build
|
|
# run: nix build .
|