Skip to content

Commit 98d8899

Browse files
committed
whitespace cleanup
1 parent 6c02a59 commit 98d8899

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

ci.jsonnet

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
overlay: "c25b1177db93290c2643d44f5eebc9f6ee4adac9",
33

44
// ======================================================================================================
5-
//
5+
//
66
// help:
77
// 1) to get the json out of the jsonnet configuration make sure the `jsonnet` executable is in path
88
// 2) execute the following command: jsonnet ci.jsonnet > ci.json
@@ -41,13 +41,13 @@
4141

4242
// ------------------------------------------------------------------------------------------------------
4343
//
44-
// utility funcs
44+
// utility funcs
4545
//
4646
// ------------------------------------------------------------------------------------------------------
4747
local utils = {
4848
download: function(name, version, platformSpecific = true)
4949
{name: name, version: version, platformspecific: platformSpecific},
50-
50+
5151
getValue: function(object, field)
5252
if (!std.objectHas(object, field)) then
5353
error "unknown field: "+field+" in "+object+", valid choices are: "+std.objectFields(object)
@@ -57,7 +57,7 @@
5757
graalOption: function(name, value)
5858
["--Ja", "@-Dgraal."+name+"="+value],
5959
},
60-
60+
6161
// ------------------------------------------------------------------------------------------------------
6262
//
6363
// platform mixins
@@ -249,23 +249,23 @@
249249
//
250250
// ------------------------------------------------------------------------------------------------------
251251
local gates = [
252-
// unittests
252+
// unittests
253253
testGate(type="unittest", platform="linux"),
254254
testGate(type="unittest", platform="darwin"),
255255
testGate(type="svm-unittest", platform="linux"),
256256
testGate(type="svm-unittest", platform="darwin"),
257257

258-
// junit
258+
// junit
259259
testGate(type="junit", platform="linux"),
260260
testGate(type="junit", platform="darwin"),
261261

262-
// style
262+
// style
263263
styleGate,
264264

265265
// graalvm gates
266266
graalVmGate,
267267

268-
// deploy binaries
268+
// deploy binaries
269269
deployGate(platform="linux"),
270270
deployGate(platform="darwin"),
271271
],

0 commit comments

Comments
 (0)