-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgenerated.uuagc.tf
79 lines (68 loc) · 1.9 KB
/
generated.uuagc.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
resource "hydra_project" "uuagc" {
name = "uuagc"
display_name = "UU Attribute Grammar"
homepage = "http://www.cs.uu.nl/wiki/HUT/AttributeGrammarSystem"
description = "Universiteit Utrecht Attribute Grammar Compiler"
owner = "amiddelk"
enabled = false
visible = false
}
resource "hydra_jobset" "uuagc_trunk" {
project = hydra_project.uuagc.name
state = "disabled"
visible = true
name = "trunk"
type = "legacy"
description = "Trunk build"
nix_expression {
file = "release.nix"
input = "uuagcSrc"
}
input {
name = "nixpkgs"
type = "git"
value = "https://github.com/NixOS/nixpkgs.git release-14.12"
notify_committers = false
}
input {
name = "officialRelease"
type = "boolean"
value = "false"
notify_committers = false
}
input {
name = "system"
type = "string"
value = "i686-linux"
notify_committers = false
}
input {
name = "tarball"
type = "build"
value = "tarball"
notify_committers = false
}
input {
name = "uuagcSrc"
type = "svn"
value = "https://subversion.cs.uu.nl/repos/project.STEC.uuagc/uuagc/trunk/"
notify_committers = false
}
input {
name = "uulib_i686"
type = "build"
value = "uulib:trunk:build [system = \"i686-linux\"]"
notify_committers = false
}
input {
name = "uulib_x64"
type = "build"
value = "uulib:trunk:build [system = \"x86_64-linux\"]"
notify_committers = false
}
check_interval = 300
scheduling_shares = 100
keep_evaluations = 0
email_notifications = true
email_override = "ariem@cs.uu.nl"
}