-
Notifications
You must be signed in to change notification settings - Fork 3
/
yhaxen.json
115 lines (111 loc) · 2.26 KB
/
yhaxen.json
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"variables":
[
{
"name":"sourceDirectory",
"value":"src/main/haxe"
},
{
"name":"testSourceDirectory",
"value":"src/test/haxe"
},
{
"name":"outputDirectory",
"value":"src/main/haxe"
},
{
"name":"testOutputDirectory",
"value":"bin/test"
}
],
"dependencies":
[
{
"name":"haxelib_client",
"version":"3.1.0-rc.4",
"type": "haxelib"
},
{
"name":"munit",
"version":"cf0c91a2c9",
"source": "[email protected]:massiveinteractive/MassiveUnit.git",
"type": "git",
"subdirectory": "src",
"makeCurrent": true,
"scopes": ["test"]
},
{
"name":"mcover",
"version":"2.0.3",
"type": "haxelib",
"scopes": ["test"],
"forceVersion": true
},
{
"name":"mconsole",
"version":"1.6.0",
"type": "haxelib",
"scopes": ["test"],
"forceVersion": true
},
{
"name":"mlib",
"version":"2.0.2",
"type": "haxelib",
"scopes": ["test"],
"forceVersion": true
}
],
"tests":
[
{
"name": "test",
"command": "haxelib",
"arguments":
[
"run", "munit", "test", "cliconfig",
"${variable:testSourceDirectory}", "${variable:testOutputDirectory}", "bin/test-report",
"-result-exit-code",
"config:classPath", "${variable:sourceDirectory}",
"config:coverageIgnoredClass", "module",
"target:-main", "TestMain",
"target:-cp", "${variable:sourceDirectory}",
"target:-cp", "${variable:testSourceDirectory}",
"${dependency:*:classPath:target:-cp}",
"target:-neko", "${variable:testOutputDirectory}/neko_test.n"
]
}
],
"builds":
[
{
"name": "main",
"command": "haxe",
"arguments":
[
"-main", "yhaxen.Main",
"-neko", "${variable:outputDirectory}/run.n",
"-cp", "${variable:sourceDirectory}",
"${dependency:*:classPath:-cp}",
"-D", "version=${arg:-version}"
]
}
],
"releases":
[
{
"type": "haxelib",
"haxelib": "${variable:sourceDirectory}/haxelib.json",
"archiveInstructions":
[
{"source": "${variable:sourceDirectory}/haxelib.json", "target":"haxelib.json"},
{"source": "${variable:outputDirectory}/run.n", "target": "run.n"},
{"source": "${variable:sourceDirectory}/yhaxen", "target": "yhaxen"}
]
},
{
"type": "git",
"haxelib": "${variable:sourceDirectory}/haxelib.json"
}
]
}