Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 20 additions & 3 deletions terraform/hydra-projects.tf
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,11 @@ resource "hydra_jobset" "emacs_overlay" {
project = hydra_project.emacs_overlay.name
state = "enabled"
visible = true
name = "master"
name = "emacsen"
type = "flake"
description = "master branch"
description = "master branch emacsen"

flake_uri = "github:nix-community/emacs-overlay"
flake_uri = "github:nix-community/emacs-overlay#hydraEmacsen"

check_interval = 1800
scheduling_shares = 3000
Expand All @@ -54,6 +54,23 @@ resource "hydra_jobset" "emacs_overlay" {
email_notifications = false
}

resource "hydra_jobset" "emacs_overlay_package_set" {
project = hydra_project.emacs_overlay.name
state = "enabled"
visible = true
name = "package set"
type = "flake"
description = "master branch package set"

flake_uri = "github:nix-community/emacs-overlay#hydraPackageSet"

check_interval = 0
scheduling_shares = 1000
keep_evaluations = 1

email_notifications = false
}

resource "hydra_project" "simple_nixos_mailserver" {
name = "simple-nixos-mailserver"
display_name = "Simple NixOS MailServer"
Expand Down