Skip to content

Commit 932e5e2

Browse files
committed
Enable basictest in CI
1 parent dbd8e2c commit 932e5e2

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

ci.jsonnet

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -406,6 +406,7 @@ local part_definitions = {
406406
] + jt(["lint"]) + self.after_build,
407407
},
408408

409+
test_basictest: { run+: jt(["ruby", "test/basictest/runner.rb"]) },
409410
test_mri: { run+: jt(["test", "mri", "--no-sulong", "--", "-j4"]) },
410411
test_integration: { run+: jt(["test", "integration"]) },
411412
test_gems: { run+: jt(["test", "gems"]) },
@@ -536,7 +537,7 @@ local composition_environment = utils.add_inclusion_tracking(part_definitions, "
536537
{
537538
local linux_gate = $.platform.linux + $.cap.gate + $.jdk.labsjdk8 + $.use.common + $.use.build + { timelimit: "01:00:00" },
538539

539-
"ruby-test-specs-linux": linux_gate + $.run.test_unit_tck_specs + { timelimit: "35:00" },
540+
"ruby-test-specs-linux": linux_gate + $.run.test_unit_tck_specs + $.run.test_basictest + { timelimit: "35:00" },
540541
"ruby-test-fast-linux": linux_gate + $.run.test_fast + { timelimit: "30:00" }, # To catch missing slow tags
541542
"ruby-test-mri-linux": linux_gate + $.run.test_mri + { timelimit: "30:00" },
542543
"ruby-test-integration": linux_gate + $.run.test_integration,
@@ -552,7 +553,7 @@ local composition_environment = utils.add_inclusion_tracking(part_definitions, "
552553
{
553554
local darwin_gate = $.platform.darwin + $.cap.gate + $.jdk.labsjdk8 + $.use.common + $.use.build + { timelimit: "01:00:00" },
554555

555-
"ruby-test-specs-darwin": darwin_gate + $.run.test_unit_tck_specs + { timelimit: "45:00" },
556+
"ruby-test-specs-darwin": darwin_gate + $.run.test_unit_tck_specs + $.run.test_basictest + { timelimit: "45:00" },
556557
"ruby-test-mri-darwin": darwin_gate + $.run.test_mri,
557558
"ruby-test-cexts-darwin": darwin_gate + $.use.gem_test_pack + $.run.test_cexts,
558559
} +

doc/contributor/testing.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -206,8 +206,8 @@ and configurations that aren't tested, due to limited resources.
206206

207207
* `UNIT` with `INT` on `J8` on Linux.
208208
* `UNIT` with `INT` on `J8` on macOS.
209-
* `SPEC` with `INT` on `J8` on Linux.
210-
* `SPEC` with `INT` on `J8` on macOS.
209+
* `BASICTEST`, `SPEC` with `INT` on `J8` on Linux.
210+
* `BASICTEST`, `SPEC` with `INT` on `J8` on macOS.
211211
* `SPEC(FAST)` with `INT` on `J11` on Linux.
212212
* `TCK` with `INT` on `J8` on Linux.
213213
* `MRI` with `INT` on `J8` on Linux.

0 commit comments

Comments
 (0)