-
Notifications
You must be signed in to change notification settings - Fork 5
42 lines (39 loc) · 1.01 KB
/
integration.yml
File metadata and controls
42 lines (39 loc) · 1.01 KB
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
30
31
32
33
34
35
36
37
38
39
40
41
42
name: Integration Tests
on:
workflow_dispatch:
pull_request:
branches:
- main
schedule:
- cron: "0 0 * * 0" # Runs every Sunday at midnight UTC
jobs:
check-on-nix:
name: "Check: ${{ matrix.check }}"
runs-on: namespace-profile-pareto-linux
strategy:
fail-fast: false
matrix:
check:
[
pwd-manager,
firewall,
screenlock,
screenlock-plasma5,
secureboot,
luks,
zfs,
help,
xfce,
trayicon,
autologin,
]
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
- uses: ./.github/actions/devenv
with:
authToken: ${{ secrets.CACHIX_AUTH_TOKEN }}
- run: chmod o+rx /home/runner
name: Update /home/runner permissions so that Nix is happy
- run: nix build .#checks.x86_64-linux.${{ matrix.check }} --print-build-logs
env:
NIX_PAGER: cat