-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgenerated.ltsmin.tf
93 lines (80 loc) · 2.08 KB
/
generated.ltsmin.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
81
82
83
84
85
86
87
88
89
90
91
92
93
resource "hydra_project" "ltsmin" {
name = "ltsmin"
display_name = "LTSmin"
homepage = "http://fmt.cs.utwente.nl/tools/ltsmin/"
description = "LTSmin"
owner = "rob.vermaas@gmail.com"
enabled = false
visible = false
}
resource "hydra_jobset" "ltsmin_ltsmin-trunk" {
project = hydra_project.ltsmin.name
state = "disabled"
visible = true
name = "ltsmin-trunk"
type = "legacy"
description = "LTSmin trunk"
nix_expression {
file = "release.nix"
input = "hydraConfig"
}
input {
name = "hydraConfig"
type = "svn"
value = "https://nixos.org/repos/utwente-hydra/ltsmin"
notify_committers = false
}
input {
name = "ltsminSrc"
type = "git"
value = "http://fmt.cs.utwente.nl/tools/scm/ltsmin.git"
notify_committers = false
}
input {
name = "mcrl2Support"
type = "boolean"
value = "true"
notify_committers = false
}
input {
name = "mcrlSupport"
type = "boolean"
value = "true"
notify_committers = false
}
input {
name = "nixpkgs"
type = "git"
value = "https://github.com/NixOS/nixpkgs.git"
notify_committers = false
}
input {
name = "officialRelease"
type = "boolean"
value = "false"
notify_committers = false
}
input {
name = "openmpiSupport"
type = "boolean"
value = "true"
notify_committers = false
}
input {
name = "system"
type = "string"
value = "x86_64-linux"
notify_committers = false
}
input {
name = "tarball"
type = "build"
value = "tarball"
notify_committers = false
}
check_interval = 300
scheduling_shares = 100
keep_evaluations = 0
email_notifications = true
email_override = ""
}