blob: fc89730515ae3d3de5d8ac5bb6cd4e6d4943d273 [file] [log] [blame]
Devin Limfe9a4cb2018-05-11 17:06:21 -07001#!groovy
2
3def 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}
10def 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}
18def init(){
19 initLocation()
20 initFiles()
21}
22return this;
23