aboutsummaryrefslogtreecommitdiffhomepage
path: root/.github/workflows/nix-ci.yml
blob: f0de7f5c170c423e9d93b5d56898b1be6e00b622 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
name: Nix

on: [push, pull_request, workflow_dispatch]

jobs:
  wlroots:
    if: github.event_name != 'pull_request'
    uses: ./.github/workflows/nix-update-wlroots.yml
    secrets: inherit

  build:
    if: always() && !cancelled() && !contains(needs.*.result, 'failure')
    needs: wlroots
    uses: ./.github/workflows/nix-build.yml
    secrets: inherit