Changes in Jenkinsfile [be35302:8e5dc27]
- File:
-
- 1 edited
-
Jenkinsfile (modified) (7 diffs)
Legend:
- Unmodified
- Added
- Removed
-
Jenkinsfile
rbe35302 r8e5dc27 8 8 9 9 // Globals 10 @Field defBuildDir = null11 @Field defSrcDir = null12 @Field defSettings = null13 @Field defTools = null10 BuildDir = null 11 SrcDir = null 12 Settings = null 13 Tools = null 14 14 15 15 // Local variables … … 82 82 //=========================================================================================================== 83 83 def build() { 84 de f debug = true85 defrelease = Settings.RunAllTests || Settings.RunBenchmark84 debug = true 85 release = Settings.RunAllTests || Settings.RunBenchmark 86 86 Tools.BuildStage('Build : configure', true) { 87 87 // Configure must be run inside the tree … … 96 96 //Use the current directory as the installation target so nothing escapes the sandbox 97 97 //Also specify the compiler by hand 98 deftargets=""98 targets="" 99 99 if( Settings.RunAllTests || Settings.RunBenchmark ) { 100 100 targets="--with-target-hosts='host:debug,host:nodebug'" … … 150 150 sh 'ulimit -a' 151 151 152 defjopt = '-j $(nproc)'152 jopt = '-j $(nproc)' 153 153 154 154 Tools.BuildStage('Test: Debug', true) { … … 229 229 """ + Tools.GitLogMessage() 230 230 231 def email_to = "cforall@lists.uwaterloo.ca"231 def email_to = !Settings.IsSandbox ? "cforall@lists.uwaterloo.ca" : "tdelisle@uwaterloo.ca" 232 232 233 233 if( Settings && !Settings.Silent ) { … … 281 281 public final Boolean Publish 282 282 public final Boolean Silent 283 public final Boolean IsSandbox 283 284 public final String DescLong 284 285 public final String DescShort … … 339 340 } 340 341 342 this.IsSandbox = (branch == "jenkins-sandbox") 341 343 this.RunAllTests = param.RunAllTests 342 344 this.RunBenchmark = param.RunBenchmark
Note:
See TracChangeset
for help on using the changeset viewer.