From 26a7d31b22e7d0e8587d28bd6224321d680a6272 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Milo=C5=A1=20Prchl=C3=ADk?= Date: Thu, 16 May 2024 19:58:59 +0200 Subject: [PATCH] Split provision/virtual plans to subgroups per step Similar approach to `/plans/features/steps`, to get more resources and speed up this quite a long plan. --- plans/provision/virtual.fmf | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/plans/provision/virtual.fmf b/plans/provision/virtual.fmf index 3ff387bac3..b167623ff5 100644 --- a/plans/provision/virtual.fmf +++ b/plans/provision/virtual.fmf @@ -54,3 +54,19 @@ adjust+: - sysctl -w net.ipv6.conf.default.disable_ipv6=1 because: Disable IPv6 in CI to avoid IPv6 connections that are disabled in CI when: trigger == commit + +/provision: + discover+: + test: "^/tests/provision" + +/prepare: + discover+: + test: "^/tests/prepare" + +/execute: + discover+: + test: "^/tests/execute" + +/the-rest: + discover+: + test: "^/tests/(?!provision|prepare|execute)"