From 000150166f3645115a8c845775aa6eb4b7fa1309 Mon Sep 17 00:00:00 2001 From: Dusty Mabe Date: Tue, 26 Mar 2024 15:27:31 -0400 Subject: [PATCH] jobs/build-development: make development streams build daily Over time I'm thinking the build on every push to the git repo is a bit heavy. Often times the changes will be insignificant to warrant building, testing, and pushing all that we do. On the other hand, if there is a change we want we can easily click a button and start a build if we don't want to wait. --- jobs/build-development.Jenkinsfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/jobs/build-development.Jenkinsfile b/jobs/build-development.Jenkinsfile index eecbe9a85..ab54bdf36 100644 --- a/jobs/build-development.Jenkinsfile +++ b/jobs/build-development.Jenkinsfile @@ -6,7 +6,10 @@ node { } properties([ - pipelineTriggers(pipeutils.get_push_trigger()), + pipelineTriggers([ + // run every 24h only for now + cron("H H * * *") + ]), durabilityHint('PERFORMANCE_OPTIMIZED') ])