forked from github-mirror/docker-nixpkgs
Compare commits
4 Commits
push-to-gi
...
5ac99012e0
| Author | SHA1 | Date | |
|---|---|---|---|
| 5ac99012e0 | |||
|
|
30ea4a75cd | ||
|
|
ae6d994038 | ||
|
|
e9b6514e0e |
6
.github/workflows/nix.yml
vendored
6
.github/workflows/nix.yml
vendored
@@ -16,12 +16,12 @@ jobs:
|
|||||||
matrix:
|
matrix:
|
||||||
channel:
|
channel:
|
||||||
- nixos-unstable
|
- nixos-unstable
|
||||||
- nixos-22.05
|
|
||||||
- nixos-22.11
|
- nixos-22.11
|
||||||
runs-on: ubuntu-latest
|
- nixos-23.05
|
||||||
|
runs-on: native
|
||||||
|
container: pjjw/nix-flake-runner:1
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
- uses: cachix/install-nix-action@v20
|
|
||||||
- run: nix-shell --run ./ci.sh
|
- run: nix-shell --run ./ci.sh
|
||||||
env:
|
env:
|
||||||
CI_REGISTRY_AUTH: '${{ secrets.REGISTRY_AUTH }}'
|
CI_REGISTRY_AUTH: '${{ secrets.REGISTRY_AUTH }}'
|
||||||
|
|||||||
@@ -3,12 +3,12 @@ stages:
|
|||||||
|
|
||||||
build:
|
build:
|
||||||
stage: build
|
stage: build
|
||||||
image: nixpkgs/nix:nixos-22.05
|
image: nixpkgs/nix:nixos-22.11
|
||||||
script: nix-shell --run ./ci.sh
|
script: nix-shell --run ./ci.sh
|
||||||
parallel:
|
parallel:
|
||||||
matrix:
|
matrix:
|
||||||
- NIXPKGS_CHANNEL: nixos-unstable
|
- NIXPKGS_CHANNEL: nixos-unstable
|
||||||
IMAGE_TAG: latest
|
IMAGE_TAG: latest
|
||||||
- NIXPKGS_CHANNEL:
|
- NIXPKGS_CHANNEL:
|
||||||
- nixos-22.05
|
|
||||||
- nixos-22.11
|
- nixos-22.11
|
||||||
|
- nixos-23.05
|
||||||
|
|||||||
@@ -39,8 +39,8 @@ nixpkgs channel describes.
|
|||||||
|
|
||||||
| Channel | Image Tag | Description |
|
| Channel | Image Tag | Description |
|
||||||
| --- | --- | --- |
|
| --- | --- | --- |
|
||||||
| nixos-22.05 | nixos-22.05 | only minor versions that include security updates |
|
|
||||||
| nixos-22.11 | nixos-22.11 | only minor versions that include security updates |
|
| nixos-22.11 | nixos-22.11 | only minor versions that include security updates |
|
||||||
|
| nixos-23.05 | nixos-23.05 | only minor versions that include security updates |
|
||||||
| nixos-unstable | latest | latest and greatest, major versions might change |
|
| nixos-unstable | latest | latest and greatest, major versions might change |
|
||||||
|
|
||||||
## List of images
|
## List of images
|
||||||
|
|||||||
@@ -55,7 +55,12 @@ let
|
|||||||
shadow
|
shadow
|
||||||
|
|
||||||
# for the vscode extension
|
# for the vscode extension
|
||||||
gcc-unwrapped
|
|
||||||
|
# HACK: don't include the "libgcc" output. It has overlapping files with
|
||||||
|
# the "lib" output, and that breaks the build.
|
||||||
|
(gcc-unwrapped // {
|
||||||
|
outputs = builtins.filter (x: x != "libgcc") gcc-unwrapped.outputs;
|
||||||
|
})
|
||||||
iproute
|
iproute
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user