-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgenerated.nix-androidenvtests.tf
72 lines (62 loc) · 1.9 KB
/
generated.nix-androidenvtests.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" "nix-androidenvtests" {
name = "nix-androidenvtests"
display_name = "Nix android tests"
homepage = "https://github.com/svanderburg/nix-androidenvtests"
description = "Tests for the Android build environment in Nixpkgs"
owner = "svanderburg"
enabled = false
visible = true
}
resource "hydra_jobset" "nix-androidenvtests_nix-androidenvtests-master" {
project = hydra_project.nix-androidenvtests.name
state = "disabled"
visible = true
name = "nix-androidenvtests-master"
type = "legacy"
description = "Nix Android tests master"
nix_expression {
file = "deployment/default.nix"
input = "nixandroidenvtests"
}
input {
name = "abiVersions"
type = "nix"
value = "[ \"armeabi-v7a\" \"x86\" ]"
notify_committers = false
}
input {
name = "buildPlatformVersions"
type = "nix"
value = "[ \"16\" \"17\" \"18\" ]"
notify_committers = false
}
input {
name = "emulatePlatformVersions"
type = "nix"
value = "[ \"16\" \"17\" \"18\" ]"
notify_committers = false
}
input {
name = "nixandroidenvtests"
type = "git"
value = "https://github.com/svanderburg/nix-androidenvtests.git"
notify_committers = false
}
input {
name = "nixpkgs"
type = "git"
value = "https://github.com/NixOS/nixpkgs.git"
notify_committers = false
}
input {
name = "systems"
type = "nix"
value = "[ \"i686-linux\" \"x86_64-linux\" \"x86_64-darwin\" ]"
notify_committers = false
}
check_interval = 300
scheduling_shares = 1
keep_evaluations = 1
email_notifications = false
email_override = ""
}