From 9340d17c427dbc549bf04893f49a19f1888240b7 Mon Sep 17 00:00:00 2001 From: "halil.cakal" Date: Tue, 25 Jun 2024 10:59:23 +0100 Subject: [PATCH] Put cronjobs to run at the same time - the order of cronjobs will be like: - 0:00 run groovy tests - 0:00 run k6 tests - 0:31 run groovy plot - 0:31 run k6 plot - 1:00 run groovy tests - 1:00 run k6 tests Issue-ID: CPS-2244 Change-Id: I54ee6283e4fbc13df51c94d003205659adc55248 Signed-off-by: halil.cakal --- jjb/onap/cps/cps-performance-test-jobs.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/jjb/onap/cps/cps-performance-test-jobs.yaml b/jjb/onap/cps/cps-performance-test-jobs.yaml index 4c65fdfa..ade51909 100644 --- a/jjb/onap/cps/cps-performance-test-jobs.yaml +++ b/jjb/onap/cps/cps-performance-test-jobs.yaml @@ -54,8 +54,8 @@ project: cps project-name: cps - # run 30 minutes past every hour - timer: "30 * * * *" + # run every hour + timer: "0 * * * *" jobs: - 'onap-{project-name}-performance-test-k6' @@ -65,8 +65,8 @@ project: cps project-name: cps - # run 1 minutes past every hour - timer: "1 * * * *" + # run 31 minutes past every hour + timer: "31 * * * *" jobs: - 'onap-{project-name}-k6-performance-tests-plots' \ No newline at end of file -- 2.25.1