mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-02 15:45:59 +01:00
nix: put workflow in different file
This commit is contained in:
parent
9d89e0f08e
commit
2e6e5b4268
2 changed files with 19 additions and 16 deletions
16
.github/workflows/ci.yaml
vendored
16
.github/workflows/ci.yaml
vendored
|
@ -44,19 +44,3 @@ jobs:
|
|||
- name: Build Hyprland with LEGACY_RENDERER
|
||||
run: |
|
||||
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
|
||||
|
|
19
.github/workflows/nix-build.yaml
vendored
Normal file
19
.github/workflows/nix-build.yaml
vendored
Normal file
|
@ -0,0 +1,19 @@
|
|||
name: Build Hyprland (Nix)
|
||||
|
||||
on: [push, pull_request, workflow_dispatch]
|
||||
jobs:
|
||||
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