-
Notifications
You must be signed in to change notification settings - Fork 114
47 lines (41 loc) · 1.33 KB
/
test-nix-flake.yml
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
43
44
45
46
47
name: Build Starter Template
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
nix-flake-build:
runs-on: ubuntu-latest
name: Build Starter Template
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Install Nix
uses: cachix/install-nix-action@v13
# Initialize a new Nix flake
- name: Initialize Nix Flake
run: |
mkdir -p my-config && cd my-config
nix flake --extra-experimental-features 'nix-command flakes' init -t github:dustinlyons/nixos-config#starter
# Apply CI user info
- name: Apply CI User Info
run: |
cd /home/runner/work/nixos-config/nixos-config/my-config
/home/runner/work/nixos-config/nixos-config/bin/apply-ci
# Build the Nix Flake with debugging
- name: Build Nix Flake
run: |
cd /home/runner/work/nixos-config/nixos-config/my-config
echo "Listing current directory:"
ls -la
git add .
echo "Building Flake..."
nix build --extra-experimental-features 'nix-command flakes' /home/runner/work/nixos-config/nixos-config/my-config#nixosConfigurations."x86_64-linux".config.system.build.toplevel
if [ $? -ne 0 ]; then
echo "Build failed, listing flake.lock for debugging:"
cat flake.lock
exit 1
fi