mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-02 17:26:00 +01:00
30 lines
836 B
YAML
30 lines
836 B
YAML
name: Build Hyprland (Nix)
|
|
|
|
on: [push, pull_request, workflow_dispatch]
|
|
jobs:
|
|
nix:
|
|
name: "Build Hyprland (Nix)"
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
package:
|
|
- default
|
|
- hyprland-no-hidpi
|
|
steps:
|
|
- name: Clone repository
|
|
uses: actions/checkout@v3
|
|
with:
|
|
submodules: recursive
|
|
- name: Install nix
|
|
uses: cachix/install-nix-action@v18
|
|
with:
|
|
install_url: https://nixos.org/nix/install
|
|
extra_nix_config: |
|
|
auto-optimise-store = true
|
|
experimental-features = nix-command flakes
|
|
- uses: cachix/cachix-action@v12
|
|
with:
|
|
name: hyprland
|
|
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
|
|
- name: Build Hyprland with default settings
|
|
run: nix build .#${{ matrix.package }} --print-build-logs
|