Devin Lim | fe9a4cb | 2018-05-11 17:06:21 -0700 | [diff] [blame] | 1 | #!groovy |
| 2 | |
| 3 | def initLocation(){ |
| 4 | jenkinsFolder = "~/OnosSystemTest/TestON/JenkinsFile/" |
| 5 | rScriptLocation = jenkinsFolder + "wikiGraphRScripts/" |
| 6 | jenkinsWorkspace = "/var/jenkins/workspace/" |
| 7 | SCPFSpecificLocation = rScriptLocation + "SCPFspecificGraphRScripts/" |
| 8 | CHOScriptDir = "~/CHO_Jenkins_Scripts/" |
| 9 | } |
| 10 | def initFiles(){ |
| 11 | trendIndividual = rScriptLocation + "trendIndividualTest.R" |
| 12 | trendMultiple = rScriptLocation + "trendMultipleTests.R" |
| 13 | trendSCPF = rScriptLocation + "trendSCPF.R" |
| 14 | trendCHO = rScriptLocation + "trendCHO.R" |
| 15 | histogramMultiple = rScriptLocation + "histogramMultipleTestGroups.R" |
| 16 | pieMultiple = rScriptLocation + "pieMultipleTests.R" |
| 17 | } |
| 18 | def init(){ |
| 19 | initLocation() |
| 20 | initFiles() |
| 21 | } |
| 22 | return this; |
| 23 | |