From 1497f798cf5fb478b305788948aa941bc7c863c4 Mon Sep 17 00:00:00 2001 From: Matt Rendina Date: Wed, 3 Oct 2018 14:02:31 -0400 Subject: Obtain github-api library at runtime. Add JobConfig class Finalize --- src/JobConfig.groovy | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 src/JobConfig.groovy (limited to 'src') diff --git a/src/JobConfig.groovy b/src/JobConfig.groovy new file mode 100644 index 0000000..34f782b --- /dev/null +++ b/src/JobConfig.groovy @@ -0,0 +1,18 @@ +// src/JobConfig.groovy +//package JobConfig; + +class JobConfig implements Serializable { + + // Regression testing summary control + def post_rt_summary = false + def all_posts_in_same_issue = true + + // Build retention control + def builds_to_keep = -1 + + // Development + def debug = false + + // Constructors + JobConfig() {} +} -- cgit