Skip to content

Commit 4ecd9bd

Browse files
author
bot
committed
Update the configuration mirror.
1 parent 00b4955 commit 4ecd9bd

File tree

8 files changed

+1676
-5063
lines changed

8 files changed

+1676
-5063
lines changed

config/generated.composer2nix.tf

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,3 +50,44 @@ resource "hydra_jobset" "composer2nix_master" {
5050
email_override = ""
5151
}
5252

53+
resource "hydra_jobset" "composer2nix_pndp-master" {
54+
project = hydra_project.composer2nix.name
55+
state = "enabled"
56+
visible = true
57+
name = "pndp-master"
58+
type = "legacy"
59+
description = "PNDP master"
60+
61+
nix_expression {
62+
file = "release.nix"
63+
input = "pndp"
64+
}
65+
66+
input {
67+
name = "nixpkgs"
68+
type = "git"
69+
value = "https://github.com/NixOS/nixpkgs.git release-21.11"
70+
notify_committers = false
71+
}
72+
73+
input {
74+
name = "pndp"
75+
type = "git"
76+
value = "https://github.com/svanderburg/pndp.git"
77+
notify_committers = false
78+
}
79+
80+
input {
81+
name = "systems"
82+
type = "nix"
83+
value = "[ \"x86_64-linux\" ]"
84+
notify_committers = false
85+
}
86+
87+
check_interval = 3600
88+
scheduling_shares = 1
89+
keep_evaluations = 3
90+
91+
email_notifications = false
92+
email_override = ""
93+
}

config/generated.crawljax.tf

Lines changed: 0 additions & 62 deletions
Original file line numberDiff line numberDiff line change
@@ -8,65 +8,3 @@ resource "hydra_project" "crawljax" {
88
visible = false
99
}
1010

11-
resource "hydra_jobset" "crawljax_crawljax-trunk" {
12-
project = hydra_project.crawljax.name
13-
state = "disabled"
14-
visible = true
15-
name = "crawljax-trunk"
16-
type = "legacy"
17-
description = "Crawljax"
18-
19-
nix_expression {
20-
file = "crawljax/release.nix"
21-
input = "hydraConfig"
22-
}
23-
24-
input {
25-
name = "build"
26-
type = "build"
27-
value = "build"
28-
notify_committers = false
29-
}
30-
31-
input {
32-
name = "crawljaxSrc"
33-
type = "svn"
34-
value = "http://crawljax.googlecode.com/svn/trunk"
35-
notify_committers = false
36-
}
37-
38-
input {
39-
name = "hydraConfig"
40-
type = "svn"
41-
value = "https://nixos.org/repos/nix/hydra-config/tud/trunk"
42-
notify_committers = false
43-
}
44-
45-
input {
46-
name = "nixos"
47-
type = "git"
48-
value = "https://github.com/NixOS/nixos.git"
49-
notify_committers = false
50-
}
51-
52-
input {
53-
name = "nixpkgs"
54-
type = "git"
55-
value = "https://github.com/NixOS/nixpkgs.git"
56-
notify_committers = false
57-
}
58-
59-
input {
60-
name = "services"
61-
type = "svn"
62-
value = "https://nixos.org/repos/nix/services/trunk"
63-
notify_committers = false
64-
}
65-
66-
check_interval = 300
67-
scheduling_shares = 100
68-
keep_evaluations = 0
69-
70-
email_notifications = true
71-
email_override = "rob.vermaas@gmail.com"
72-
}

config/generated.hydra.tf

Lines changed: 175 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,178 @@ resource "hydra_project" "hydra" {
88
visible = true
99
}
1010

11+
resource "hydra_jobset" "hydra_build-ng" {
12+
project = hydra_project.hydra.name
13+
state = "disabled"
14+
visible = false
15+
name = "build-ng"
16+
type = "legacy"
17+
description = "New queue runner"
18+
19+
nix_expression {
20+
file = "release.nix"
21+
input = "hydraSrc"
22+
}
23+
24+
input {
25+
name = "hydraSrc"
26+
type = "git"
27+
value = "https://github.com/NixOS/hydra.git build-ng"
28+
notify_committers = false
29+
}
30+
31+
input {
32+
name = "nixpkgs"
33+
type = "git"
34+
value = "https://github.com/NixOS/nixpkgs.git release-14.12"
35+
notify_committers = false
36+
}
37+
38+
input {
39+
name = "officialRelease"
40+
type = "boolean"
41+
value = "false"
42+
notify_committers = false
43+
}
44+
45+
check_interval = 300
46+
scheduling_shares = 100
47+
keep_evaluations = 2
48+
49+
email_notifications = true
50+
email_override = "rob.vermaas@gmail.com, eelco.dolstra@logicblox.com"
51+
}
52+
53+
resource "hydra_jobset" "hydra_flake" {
54+
project = hydra_project.hydra.name
55+
state = "disabled"
56+
visible = false
57+
name = "flake"
58+
type = "flake"
59+
description = "Flake branch"
60+
61+
flake_uri = "github:NixOS/hydra/flake"
62+
63+
check_interval = 600
64+
scheduling_shares = 100
65+
keep_evaluations = 0
66+
67+
email_notifications = false
68+
email_override = ""
69+
}
70+
71+
resource "hydra_jobset" "hydra_hydra-ant-logger-trunk" {
72+
project = hydra_project.hydra.name
73+
state = "disabled"
74+
visible = true
75+
name = "hydra-ant-logger-trunk"
76+
type = "legacy"
77+
description = "Hydra Ant Logger"
78+
79+
nix_expression {
80+
file = "release.nix"
81+
input = "src"
82+
}
83+
84+
input {
85+
name = "nixpkgs"
86+
type = "git"
87+
value = "https://github.com/NixOS/nixpkgs.git"
88+
notify_committers = false
89+
}
90+
91+
input {
92+
name = "officialRelease"
93+
type = "boolean"
94+
value = "false"
95+
notify_committers = false
96+
}
97+
98+
input {
99+
name = "src"
100+
type = "git"
101+
value = "https://github.com/NixOS/hydra-ant-logger.git"
102+
notify_committers = false
103+
}
104+
105+
check_interval = 300
106+
scheduling_shares = 100
107+
keep_evaluations = 1
108+
109+
email_notifications = false
110+
email_override = ""
111+
}
112+
113+
resource "hydra_jobset" "hydra_hydra-master" {
114+
project = hydra_project.hydra.name
115+
state = "disabled"
116+
visible = false
117+
name = "hydra-master"
118+
type = "legacy"
119+
description = "Hydra 'branch' for Rob"
120+
121+
nix_expression {
122+
file = "release.nix"
123+
input = "hydraSrc"
124+
}
125+
126+
input {
127+
name = "hydraSrc"
128+
type = "git"
129+
value = "git://gitorious.org/hydra/hydra.git"
130+
notify_committers = false
131+
}
132+
133+
input {
134+
name = "nixos"
135+
type = "git"
136+
value = "https://github.com/NixOS/nixos.git"
137+
notify_committers = false
138+
}
139+
140+
input {
141+
name = "nixpkgs"
142+
type = "git"
143+
value = "https://github.com/NixOS/nixpkgs.git"
144+
notify_committers = false
145+
}
146+
147+
input {
148+
name = "officialRelease"
149+
type = "boolean"
150+
value = "false"
151+
notify_committers = false
152+
}
153+
154+
input {
155+
name = "system"
156+
type = "string"
157+
value = "i686-linux"
158+
notify_committers = false
159+
}
160+
161+
check_interval = 300
162+
scheduling_shares = 100
163+
keep_evaluations = 0
164+
165+
email_notifications = true
166+
email_override = "rob.vermaas@gmail.com"
167+
}
168+
169+
resource "hydra_jobset" "hydra_master" {
170+
project = hydra_project.hydra.name
171+
state = "enabled"
172+
visible = true
173+
name = "master"
174+
type = "flake"
175+
description = "Master branch"
176+
177+
flake_uri = "github:NixOS/hydra"
178+
179+
check_interval = 300
180+
scheduling_shares = 100
181+
keep_evaluations = 2
182+
183+
email_notifications = false
184+
email_override = ""
185+
}

config/generated.libchop.tf

Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,65 @@ resource "hydra_project" "libchop" {
88
visible = false
99
}
1010

11+
resource "hydra_jobset" "libchop_master" {
12+
project = hydra_project.libchop.name
13+
state = "disabled"
14+
visible = true
15+
name = "master"
16+
type = "legacy"
17+
description = "`master' branch of libchop"
18+
19+
nix_expression {
20+
file = "release.nix"
21+
input = "libchopSrc"
22+
}
23+
24+
input {
25+
name = "gnulib"
26+
type = "git"
27+
value = "git://git.sv.gnu.org/gnulib.git"
28+
notify_committers = false
29+
}
30+
31+
input {
32+
name = "guile"
33+
type = "sysbuild"
34+
value = "gnu:guile-2-0:build"
35+
notify_committers = false
36+
}
37+
38+
input {
39+
name = "libchopSrc"
40+
type = "git"
41+
value = "git://git.sv.gnu.org/libchop.git"
42+
notify_committers = false
43+
}
44+
45+
input {
46+
name = "nixpkgs"
47+
type = "git"
48+
value = "https://github.com/NixOS/nixpkgs.git"
49+
notify_committers = false
50+
}
51+
52+
input {
53+
name = "system"
54+
type = "string"
55+
value = "x86_64-linux"
56+
notify_committers = false
57+
}
58+
59+
input {
60+
name = "tarball"
61+
type = "build"
62+
value = "tarball"
63+
notify_committers = false
64+
}
65+
66+
check_interval = 300
67+
scheduling_shares = 100
68+
keep_evaluations = 1
69+
70+
email_notifications = true
71+
email_override = ""
72+
}

config/generated.nix-pills.tf

Lines changed: 0 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -8,37 +8,3 @@ resource "hydra_project" "nix-pills" {
88
visible = true
99
}
1010

11-
resource "hydra_jobset" "nix-pills_master" {
12-
project = hydra_project.nix-pills.name
13-
state = "enabled"
14-
visible = true
15-
name = "master"
16-
type = "legacy"
17-
description = ""
18-
19-
nix_expression {
20-
file = "release.nix"
21-
input = "nix-pills"
22-
}
23-
24-
input {
25-
name = "nix-pills"
26-
type = "git"
27-
value = "https://github.com/NixOS/nix-pills.git master"
28-
notify_committers = false
29-
}
30-
31-
input {
32-
name = "nixpkgs"
33-
type = "git"
34-
value = "https://github.com/NixOS/nixpkgs-channels.git nixos-18.03"
35-
notify_committers = false
36-
}
37-
38-
check_interval = 3600
39-
scheduling_shares = 100000
40-
keep_evaluations = 3
41-
42-
email_notifications = false
43-
email_override = ""
44-
}

0 commit comments

Comments
 (0)