-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgenerated.mobl.tf
65 lines (56 loc) · 1.54 KB
/
generated.mobl.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
resource "hydra_project" "mobl" {
name = "mobl"
display_name = "Mobl"
homepage = "http://mobl-lang.org"
description = "Mobl"
owner = "rob.vermaas@gmail.com"
enabled = false
visible = false
}
resource "hydra_jobset" "mobl_master" {
project = hydra_project.mobl.name
state = "disabled"
visible = true
name = "master"
type = "legacy"
description = "Mobl master branch"
nix_expression {
file = "release.nix"
input = "mobl"
}
input {
name = "hydraConfig"
type = "svn"
value = "https://svn.strategoxt.org/repos/StrategoXT/hydra"
notify_committers = false
}
input {
name = "mobl"
type = "git"
value = "https://github.com/mobl/mobl.git"
notify_committers = false
}
input {
name = "moblPlugin"
type = "git"
value = "https://github.com/mobl/mobl-plugin.git"
notify_committers = false
}
input {
name = "nixpkgs"
type = "git"
value = "https://github.com/NixOS/nixpkgs.git release-14.12"
notify_committers = false
}
input {
name = "webdslzips"
type = "svn"
value = "https://svn.strategoxt.org/repos/WebDSL/webdsl-eclipse-zips/trunk"
notify_committers = false
}
check_interval = 300
scheduling_shares = 100
keep_evaluations = 0
email_notifications = false
email_override = ""
}