Skip to content

Commit 41916ae

Browse files
committed
CI: Remove test_spec_options since they have no effect
* The 'ci' and 'darwinCi' are no longer used. Simply use 'linux' and 'darwin' instead.
1 parent dd41ca5 commit 41916ae

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

ci.jsonnet

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,6 @@ local part_definitions = {
239239
platform: {
240240
linux: {
241241
platform_name:: "Linux",
242-
"$.run.specs":: { test_spec_options: ["--excl-tag", "ci"] },
243242
"$.cap":: {
244243
normal_machine: ["linux", "amd64"],
245244
bench_machine: ["x52"] + self.normal_machine + ["no_frequency_scaling"],
@@ -253,7 +252,6 @@ local part_definitions = {
253252
},
254253
darwin: {
255254
platform_name:: "Darwin",
256-
"$.run.specs":: { test_spec_options: ["--excl-tag", "darwinCi"] },
257255
"$.cap":: {
258256
normal_machine: ["darwin_mojave", "amd64"],
259257
},
@@ -280,9 +278,10 @@ local part_definitions = {
280278

281279
run: {
282280
test_unit_tck_specs: {
283-
run+: jt(["test", "unit"]) + jt(["test", "tck"]) +
284-
jt(["test", "specs"] + self["$.run.specs"].test_spec_options) +
285-
jt(["test", "specs", ":next"] + self["$.run.specs"].test_spec_options),
281+
run+: jt(["test", "unit"]) +
282+
jt(["test", "tck"]) +
283+
jt(["test", "specs"]) +
284+
jt(["test", "specs", ":next"]),
286285
},
287286

288287
test_fast: {

0 commit comments

Comments
 (0)