Hyprland/.github/workflows/nix-build.yaml

31 lines
856 B
YAML
Raw Normal View History

2022-05-21 12:39:15 +02:00
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
2022-05-21 12:39:15 +02:00
steps:
- name: Clone repository
uses: actions/checkout@v3
2022-05-31 10:47:56 +02:00
with:
submodules: recursive
2022-05-21 12:39:15 +02:00
- name: Install nix
uses: cachix/install-nix-action@v17
with:
2022-07-31 14:19:28 +02:00
install_url: https://releases.nixos.org/nix/nix-2.10.3/install
2022-05-21 12:39:15 +02:00
extra_nix_config: |
auto-optimise-store = true
experimental-features = nix-command flakes
2022-07-31 14:19:28 +02:00
- uses: cachix/cachix-action@v10
with:
name: hyprland
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
- name: Build Hyprland with default settings
run: nix build .#${{ matrix.package }} --print-build-logs