Skip to content

Commit 579997f

Browse files
committed
Remove 8.previous from CIs tests.
1 parent e5980ee commit 579997f

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

.buildkite/pull-request-test-matrix.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,9 @@
33
# and they do not break CI which jobs generator validates the release/snapshot when generating the CI steps
44
8.x:
55
releases:
6-
- 8.previous
76
- 8.current
87
snapshots:
9-
- 8.previous
108
- 8.current
11-
- 8.next
12-
- 8.future
139
9.x:
1410
releases:
1511
- 9.previous

.buildkite/scripts/e2e-pipeline/generate-steps.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ def generate_steps_for_scheduler(versions) -> list:
3838
steps: list = []
3939
snapshots = versions["snapshots"]
4040
for snapshot_version in snapshots:
41-
if snapshots[snapshot_version] is None or snapshots[snapshot_version].startswith("7."):
41+
if snapshots[snapshot_version] is None or snapshots[snapshot_version].startswith("7.") or snapshot_version == '8.previous':
4242
continue
4343
full_stack_version = snapshots[snapshot_version]
4444
version_parts = snapshots[snapshot_version].split(".")

0 commit comments

Comments
 (0)