Skip to content

Commit

Permalink
ci: tag nightly build versions with “-next”
Browse files Browse the repository at this point in the history
This triggers pkgs.lib.versionAtLeast
  • Loading branch information
hraban committed Nov 30, 2024
1 parent 39548bc commit c225bca
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
5 changes: 3 additions & 2 deletions examples/channels/all-packages/nightly-ecl.nix
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
let
src = builtins.fetchGit ({ inherit url; } // builtins.removeAttrs args ["pkgs"]);
in
pkgs.ecl.overrideAttrs {
pkgs.ecl.overrideAttrs (old: {
src = builtins.trace "ECL from ${url} @ ${src.rev}" src;
}
version = "${old.version}-next";
})
3 changes: 2 additions & 1 deletion examples/channels/all-packages/nightly-sbcl.nix
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ let
in
(pkgs.sbcl.override {
bootstrapLisp = pkgs.lib.getExe pkgs.sbcl;
}).overrideAttrs ({
}).overrideAttrs (old: {
src = builtins.trace "SBCL from ${url} @ ${src.rev}" src;
version = "${old.version}-next";
} // sbclOverride)

0 comments on commit c225bca

Please sign in to comment.