-
Notifications
You must be signed in to change notification settings - Fork 5
29 lines (25 loc) · 947 Bytes
/
ci.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
name: Build xdg-desktop-portal-luminous (nix)
on: [push, pull_request]
jobs:
nix:
name: "Build xdg-desktop-portal-luminous"
runs-on: ubuntu-latest
steps:
- name: Checkout xdg-desktop-portal-luminous
uses: actions/checkout@v4
with:
submodules: recursive
- name: install nix
uses: cachix/install-nix-action@v30
with:
install_url: https://nixos.org/nix/install
extra_nix_config: |
auto-optimise-store = true
access-tokens = github.com=${{ secrets.GITHUB_TOKEN }}
experimental-features = nix-command flakes
- name: Setup meson
run: |
nix develop --command meson build
- name: Exec ninja
run: |
nix develop --command ninja -C build