forked from the-distro/infra
33 lines
1.2 KiB
Nix
33 lines
1.2 KiB
Nix
|
# Taken from https://github.com/NixOS/infra/blob/master/channels.nix
|
||
|
{
|
||
|
# "Channel name" = {
|
||
|
# # This should be the <value> part of
|
||
|
# # https://hydra.forkos.org/job/<value>/latest-finished
|
||
|
# job = "project/jobset/jobname";
|
||
|
#
|
||
|
# # When adding a new version, determine if it needs to be tagged as a
|
||
|
# # variant -- for example:
|
||
|
# # nixos-xx.xx => primary
|
||
|
# # nixos-xx.xx-small => small
|
||
|
# # nixos-xx.xx-darwin => darwin
|
||
|
# # nixos-xx.xx-aarch64 => aarch64
|
||
|
# variant = "primary";
|
||
|
#
|
||
|
# # Channel Status:
|
||
|
# # '*-unstable' channels are always "rolling"
|
||
|
# # Otherwise a release generally progresses through the following phases:
|
||
|
# #
|
||
|
# # - Directly after branch off => "beta"
|
||
|
# # - Once the channel is released => "stable"
|
||
|
# # - Once the next channel is released => "deprecated"
|
||
|
# # - N months after the next channel is released => "unmaintained"
|
||
|
# # (check the release notes for when this should happen)
|
||
|
# status = "beta";
|
||
|
# };
|
||
|
"forkos-unstable" = {
|
||
|
job = "forkos/nixos-main/tested";
|
||
|
variant = "primary";
|
||
|
status = "rolling";
|
||
|
};
|
||
|
}
|