terraform/hydra-projects: add microvm.nix

This commit is contained in:
zowoq 2024-10-27 23:39:15 +10:00
parent 9e413639bc
commit da442d42e9

View file

@ -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
}