mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-02 11:25:58 +01:00
nix: added workflow
This commit is contained in:
parent
5019682144
commit
16ad81f236
1 changed files with 16 additions and 1 deletions
15
.github/workflows/ci.yaml
vendored
15
.github/workflows/ci.yaml
vendored
|
@ -45,3 +45,18 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
make legacyrenderer
|
make legacyrenderer
|
||||||
|
|
||||||
|
nix:
|
||||||
|
name: "Build Hyprland (Nix)"
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Clone repository
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
- name: Install nix
|
||||||
|
uses: cachix/install-nix-action@v17
|
||||||
|
with:
|
||||||
|
install_url: https://releases.nixos.org/nix/nix-2.8.0/install
|
||||||
|
extra_nix_config: |
|
||||||
|
auto-optimise-store = true
|
||||||
|
experimental-features = nix-command flakes
|
||||||
|
- name: Build HyprLand with default settings
|
||||||
|
run: nix build --print-build-logs
|
||||||
|
|
Loading…
Reference in a new issue