-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgenerated.crawljax.tf
72 lines (62 loc) · 1.72 KB
/
generated.crawljax.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
resource "hydra_project" "crawljax" {
name = "crawljax"
display_name = "Crawljax"
homepage = "http://spci.st.ewi.tudelft.nl"
description = "Crawljax"
owner = "rob.vermaas@gmail.com"
enabled = false
visible = false
}
resource "hydra_jobset" "crawljax_crawljax-trunk" {
project = hydra_project.crawljax.name
state = "disabled"
visible = true
name = "crawljax-trunk"
type = "legacy"
description = "Crawljax"
nix_expression {
file = "crawljax/release.nix"
input = "hydraConfig"
}
input {
name = "build"
type = "build"
value = "build"
notify_committers = false
}
input {
name = "crawljaxSrc"
type = "svn"
value = "http://crawljax.googlecode.com/svn/trunk"
notify_committers = false
}
input {
name = "hydraConfig"
type = "svn"
value = "https://nixos.org/repos/nix/hydra-config/tud/trunk"
notify_committers = false
}
input {
name = "nixos"
type = "git"
value = "https://github.com/NixOS/nixos.git"
notify_committers = false
}
input {
name = "nixpkgs"
type = "git"
value = "https://github.com/NixOS/nixpkgs.git"
notify_committers = false
}
input {
name = "services"
type = "svn"
value = "https://nixos.org/repos/nix/services/trunk"
notify_committers = false
}
check_interval = 300
scheduling_shares = 100
keep_evaluations = 0
email_notifications = true
email_override = "rob.vermaas@gmail.com"
}