-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgenerated.ofborg.tf
80 lines (66 loc) · 1.83 KB
/
generated.ofborg.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
resource "hydra_project" "ofborg" {
name = "ofborg"
display_name = "ofborg"
homepage = "https://github.com/NiXOS/ofborg"
description = "OfBorg automation"
owner = "graham@grahamc.com"
enabled = true
visible = true
}
resource "hydra_jobset" "ofborg_cole-flake" {
project = hydra_project.ofborg.name
state = "disabled"
visible = false
name = "cole-flake"
type = "flake"
description = "Cole's work to make ofborg a flake."
flake_uri = "github:cole-h/ofborg/flakeify"
check_interval = 3600
scheduling_shares = 10000
keep_evaluations = 1
email_notifications = false
email_override = ""
}
resource "hydra_jobset" "ofborg_next" {
project = hydra_project.ofborg.name
state = "enabled"
visible = true
name = "next"
type = "legacy"
description = ""
nix_expression {
file = "release.nix"
input = "ofborg"
}
input {
name = "nixpkgs"
type = "git"
value = "https://github.com/nixos/nixpkgs-channels.git nixpkgs-unstable"
notify_committers = false
}
input {
name = "ofborg"
type = "git"
value = "https://github.com/grahamc/ofborg.git next"
notify_committers = false
}
check_interval = 3600
scheduling_shares = 1000000
keep_evaluations = 3
email_notifications = true
email_override = "graham@grahamc.com"
}
resource "hydra_jobset" "ofborg_release" {
project = hydra_project.ofborg.name
state = "enabled"
visible = true
name = "release"
type = "flake"
description = ""
flake_uri = "github:nixos/ofborg"
check_interval = 3600
scheduling_shares = 1000000
keep_evaluations = 3
email_notifications = false
email_override = ""
}