terraform/hydra-projects: add microvm.nix
This commit is contained in:
parent
9e413639bc
commit
da442d42e9
1 changed files with 27 additions and 0 deletions
|
@ -69,3 +69,30 @@ resource "hydra_project" "simple_nixos_mailserver" {
|
||||||
value = "https://gitlab.com/simple-nixos-mailserver/nixos-mailserver"
|
value = "https://gitlab.com/simple-nixos-mailserver/nixos-mailserver"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
resource "hydra_project" "microvm_nix" {
|
||||||
|
name = "microvm-nix"
|
||||||
|
display_name = "MicroVM.nix"
|
||||||
|
description = "NixOS MicroVMs"
|
||||||
|
homepage = "https://github.com/astro/microvm.nix"
|
||||||
|
owner = "admin"
|
||||||
|
enabled = true
|
||||||
|
visible = true
|
||||||
|
}
|
||||||
|
|
||||||
|
resource "hydra_jobset" "microvm_nix" {
|
||||||
|
project = hydra_project.microvm_nix.name
|
||||||
|
state = "disabled"
|
||||||
|
visible = true
|
||||||
|
name = "main"
|
||||||
|
type = "flake"
|
||||||
|
description = "main branch"
|
||||||
|
|
||||||
|
flake_uri = "github:astro/microvm.nix"
|
||||||
|
|
||||||
|
check_interval = 1800
|
||||||
|
scheduling_shares = 3000
|
||||||
|
keep_evaluations = 1
|
||||||
|
|
||||||
|
email_notifications = false
|
||||||
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue