This repository has been archived by the owner on Nov 7, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
73 lines (59 loc) · 1.95 KB
/
ci.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
name: Nuenv
on:
pull_request:
push:
branches:
- main
jobs:
check:
runs-on: ubuntu-22.04
steps:
- name: git checkout
uses: actions/checkout@v3
- name: Check Nixpkgs input
uses: DeterminateSystems/flake-checker-action@main
with:
fail-mode: true
- uses: DeterminateSystems/nix-installer-action@main
- uses: DeterminateSystems/magic-nix-cache-action@main
- run: nix flake check
build:
strategy:
matrix:
os: [ubuntu-22.04, macos-latest-xlarge]
runs-on: ${{ matrix.os }}
environment: build
steps:
- name: git checkout
uses: actions/checkout@v3
- uses: DeterminateSystems/nix-installer-action@main
- uses: DeterminateSystems/magic-nix-cache-action@main
- name: Set up Nix environment
run: |
nix develop ".#ci" --command direnv allow
eval "$(nix develop ".#ci" --command direnv export bash)"
echo "$PATH" >> $GITHUB_PATH
- name: Build Nuenv derivation
run: |
nix build --print-build-logs
cat result/share/hello.txt
- name: Build Nuenv derivation with no debug output
run: |
nix build --print-build-logs .#helloNoDebug
cat result/share/hello.txt
- name: Build Nuenv derivation directly (not from overlay)
run: |
nix build --print-build-logs .#direct
cat result/share/nushell-version.txt
- name: Build stdenv derivation that depends on Nuenv derivation
run: |
nix build --print-build-logs .#other
cat result/share/copied.txt
- name: Build Nuenv derivation that pulls sources from GitHub
run: |
nix build --print-build-logs .#githubSrc
cat result/share/README.md
- name: Build stdenv derivation that mimics Nuenv derivation
run: |
nix build --print-build-logs .#stdenv
cat result/share/hello.txt