diff options
| author | Matt Rendina <mrendina@stsci.edu> | 2017-11-28 10:06:28 -0500 |
|---|---|---|
| committer | Matt Rendina <mrendina@stsci.edu> | 2017-11-28 10:06:28 -0500 |
| commit | 95267f3bceb3e407508bf006fbe53f0fedcb697a (patch) | |
| tree | c8225e4894a80bd701637f47db01084a9a59e162 | |
| parent | e7df9ef73f7b93b7d80a8bd4833a8ec03c5376c2 (diff) | |
| download | jscu_refactor-95267f3bceb3e407508bf006fbe53f0fedcb697a.tar.gz | |
Test shared class use
| -rw-r--r-- | vars/utils.groovy | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/vars/utils.groovy b/vars/utils.groovy index b0921e2..586bc66 100644 --- a/vars/utils.groovy +++ b/vars/utils.groovy @@ -1,3 +1,5 @@ +import org.foo.Myclass + // Jenkinsfile utilities // Clone the source repository and examine the most recent commit message. @@ -34,6 +36,8 @@ class TClass implements Serializable { def concurrent2(configs) { + myobj = new MyClass() + println("myobj.name = ${myobj.name}") def tasks = [:] println("Size of configs = ${configs.size()}") for (config in configs) { |
