nixci: upgrade to 0.2 *and* update ./dev nixpkgs (#51)

This commit is contained in:
Sridhar Ratnakumar 2023-10-19 14:18:19 -04:00 committed by GitHub
parent c56d39116c
commit 6ec0a44a32
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 11 additions and 4 deletions

View File

@ -16,5 +16,6 @@ jobs:
- uses: DeterminateSystems/magic-nix-cache-action@main - uses: DeterminateSystems/magic-nix-cache-action@main
- uses: yaxitech/nix-install-pkgs-action@v3 - uses: yaxitech/nix-install-pkgs-action@v3
with: with:
inputs-from: ./dev
packages: "nixpkgs#nixci" packages: "nixpkgs#nixci"
- run: nixci - run: nixci

View File

@ -35,11 +35,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1687274257, "lastModified": 1697688401,
"narHash": "sha256-TutzPriQcZ8FghDhEolnHcYU2oHIG5XWF+/SUBNnAOE=", "narHash": "sha256-61QlajY7R9PbK25uFl55zh968CVNspwXX1zzimic4Uo=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "2c9ecd1f0400076a4d6b2193ad468ff0a7e7fdc5", "rev": "458ef9126aa380996d77d44f53f886c2d8485f53",
"type": "github" "type": "github"
}, },
"original": { "original": {

View File

@ -11,7 +11,7 @@
# Config for https://github.com/srid/nixci # Config for https://github.com/srid/nixci
# To run this, `nix run github:srid/nixci` # To run this, `nix run github:srid/nixci`
nixci = let overrideInputs = { "services-flake" = ./.; }; in { nixci.default = let overrideInputs = { "services-flake" = ./.; }; in {
example = { example = {
inherit overrideInputs; inherit overrideInputs;
dir = "./example"; dir = "./example";
@ -24,5 +24,11 @@
dir = "./dev"; dir = "./dev";
}; };
}; };
nixci.ex = let overrideInputs = { "services-flake" = ./.; }; in {
example = {
inherit overrideInputs;
dir = "./example";
};
};
}; };
} }