From 4b0de47ee99f1eb961a148d93df8219738f4633f Mon Sep 17 00:00:00 2001 From: Vanessa Rene Valderrama Date: Fri, 24 Feb 2017 11:53:12 -0600 Subject: [PATCH] Modify CSIT nightly cron The csit-vpp-verify-perf-master-nightly-all job is not running as scheduled. Jenkins cron syntax requires the days of the week to be represented in numbers as opposed to names. Sun = 0 Tue = 2 Thu = 4 Change-Id: I1a980541aab9e607b9fb7f232f128019e0c9dbb1 Signed-off-by: Vanessa Rene Valderrama --- jjb/csit/csit.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jjb/csit/csit.yaml b/jjb/csit/csit.yaml index 0a2e22c00..c3ea71aea 100644 --- a/jjb/csit/csit.yaml +++ b/jjb/csit/csit.yaml @@ -1392,7 +1392,7 @@ build-timeout: '1440' triggers: - - timed: '0 20 * * Sun,Tue,Thu' + - timed: '0 20 * * 0,2,4' builders: - shell: 'echo "BRANCH_ID={branch-id}" > $WORKSPACE/variables.prop' -- 2.16.6