commit
074dd32ad1
4 changed files with 9 additions and 1 deletions
2
.github/workflows/nix.yml
vendored
2
.github/workflows/nix.yml
vendored
|
@ -19,6 +19,7 @@ jobs:
|
|||
- nixos-unstable
|
||||
- nixos-24.05
|
||||
- nixos-24.11
|
||||
- nixos-25.05
|
||||
system:
|
||||
- aarch64-linux
|
||||
- x86_64-linux
|
||||
|
@ -67,6 +68,7 @@ jobs:
|
|||
- nixos-unstable
|
||||
- nixos-24.05
|
||||
- nixos-24.11
|
||||
- nixos-25.05
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
|
|
@ -12,3 +12,4 @@ build:
|
|||
- NIXPKGS_CHANNEL:
|
||||
- nixos-24.05
|
||||
- nixos-24.11
|
||||
- nixos-25.05
|
||||
|
|
|
@ -41,6 +41,7 @@ nixpkgs channel describes.
|
|||
| --- | --- | --- |
|
||||
| nixos-24.05 | nixos-24.05 | only minor versions that include security updates |
|
||||
| nixos-24.11 | nixos-24.11 | only minor versions that include security updates |
|
||||
| nixos-25.05 | nixos-25.05 | only minor versions that include security updates |
|
||||
| nixos-unstable | latest | latest and greatest, major versions might change |
|
||||
|
||||
## List of images
|
||||
|
|
|
@ -42,7 +42,11 @@ let
|
|||
nix
|
||||
|
||||
# runtime dependencies of nix
|
||||
cacert
|
||||
# HACK: don't include the "hashed" output. It has overlapping files with
|
||||
# the "unbundled" output, and that breaks the build.
|
||||
(cacert // {
|
||||
outputs = builtins.filter (x: x != "hashed") cacert.outputs;
|
||||
})
|
||||
gitReallyMinimal
|
||||
gnutar
|
||||
gzip
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue