@@ -3,53 +3,53 @@ local const = import 'ci_common/constants.libsonnet';
3
3
local builder = import 'ci_common/builder.libsonnet' ;
4
4
5
5
{
6
- overlay: "54c94d97c2245fa193431d00aa34c20842458cd1 " ,
7
-
8
- // ======================================================================================================
9
- //
10
- // help:
11
- // 1) to get the json out of the jsonnet configuration make sure the `jsonnet` executable is in path
12
- // 2) execute the following command: jsonnet ci.jsonnet > ci.json
13
- // 3) a helper script which does just that is located in: ./scripts/jsonnet_json.sh
14
- //
15
- // ======================================================================================================
16
-
17
- // ------------------------------------------------------------------------------------------------------
18
- //
19
- // the gates
20
- //
21
- // ------------------------------------------------------------------------------------------------------
22
- local gates = [
23
- // unittests
24
- builder.testGate(type="unittest" , platform="linux" ),
25
- builder.testGate(type="unittest" , platform="darwin" ),
26
- builder.testGateTime(type="tagged-unittest" , platform="linux" , timelimit=const.TIME_LIMIT["2h" ]),
27
- builder.testGateTime(type="tagged-unittest" , platform="darwin" , timelimit=const.TIME_LIMIT["2h" ]),
28
- builder.testGate(type="svm-unittest" , platform="linux" ),
29
- builder.testGate(type="svm-unittest" , platform="darwin" ),
30
-
31
- // junit
32
- builder.testGate(type="junit" , platform="linux" ),
33
- builder.testGate(type="junit" , platform="darwin" ),
34
-
35
- // style
36
- builder.styleGate,
37
-
38
- // coverage
39
- builder.coverageGate,
40
-
41
- // graalvm gates
42
- builder.graalVmGate,
43
-
44
- // deploy binaries
45
- builder.deployGate(platform="linux" ),
46
- builder.deployGate(platform="darwin" ),
47
- ],
48
-
49
- // ======================================================================================================
50
- //
51
- // the builds (the public section)
52
- //
53
- // ======================================================================================================
54
- builds: gates,
6
+ overlay: "a926d5fab5c48b0986343f7558a4cd149af426b0 " ,
7
+
8
+ // ======================================================================================================
9
+ //
10
+ // help:
11
+ // 1) to get the json out of the jsonnet configuration make sure the `jsonnet` executable is in path
12
+ // 2) execute the following command: jsonnet ci.jsonnet > ci.json
13
+ // 3) a helper script which does just that is located in: ./scripts/jsonnet_json.sh
14
+ //
15
+ // ======================================================================================================
16
+
17
+ // ------------------------------------------------------------------------------------------------------
18
+ //
19
+ // the gates
20
+ //
21
+ // ------------------------------------------------------------------------------------------------------
22
+ local gates = [
23
+ // unittests
24
+ builder.testGate(type="unittest" , platform="linux" ),
25
+ builder.testGate(type="unittest" , platform="darwin" ),
26
+ builder.testGateTime(type="tagged-unittest" , platform="linux" , timelimit=const.TIME_LIMIT["2h" ]),
27
+ builder.testGateTime(type="tagged-unittest" , platform="darwin" , timelimit=const.TIME_LIMIT["2h" ]),
28
+ builder.testGate(type="svm-unittest" , platform="linux" ),
29
+ builder.testGate(type="svm-unittest" , platform="darwin" ),
30
+
31
+ // junit
32
+ builder.testGate(type="junit" , platform="linux" ),
33
+ builder.testGate(type="junit" , platform="darwin" ),
34
+
35
+ // style
36
+ builder.styleGate,
37
+
38
+ // coverage
39
+ builder.coverageGate,
40
+
41
+ // graalvm gates
42
+ builder.graalVmGate,
43
+
44
+ // deploy binaries
45
+ builder.deployGate(platform="linux" ),
46
+ builder.deployGate(platform="darwin" ),
47
+ ],
48
+
49
+ // ======================================================================================================
50
+ //
51
+ // the builds (the public section)
52
+ //
53
+ // ======================================================================================================
54
+ builds: gates,
55
55
}
0 commit comments