Changeset 7ca6bf1 for Jenkinsfile
- Timestamp:
- Aug 20, 2025, 12:12:31 PM (6 months ago)
- Branches:
- master
- Children:
- 1dec8f3
- Parents:
- 9989781 (diff), 7ea4073 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - File:
-
- 1 edited
-
Jenkinsfile (modified) (7 diffs)
Legend:
- Unmodified
- Added
- Removed
-
Jenkinsfile
r9989781 r7ca6bf1 8 8 9 9 // Globals 10 BuildDir = null11 SrcDir = null12 Settings = null13 Tools = null10 @Field def BuildDir = null 11 @Field def SrcDir = null 12 @Field def Settings = null 13 @Field def Tools = null 14 14 15 15 // Local variables … … 82 82 //=========================================================================================================== 83 83 def build() { 84 de bug = true85 release = Settings.RunAllTests || Settings.RunBenchmark84 def debug = true 85 def 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 targets=""98 def 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 jopt = '-j $(nproc)'152 def jopt = '-j $(nproc)' 153 153 154 154 Tools.BuildStage('Test: Debug', true) { … … 229 229 """ + Tools.GitLogMessage() 230 230 231 def email_to = !Settings.IsSandbox ? "cforall@lists.uwaterloo.ca" : "tdelisle@uwaterloo.ca"231 def email_to = "cforall@lists.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 IsSandbox284 283 public final String DescLong 285 284 public final String DescShort … … 340 339 } 341 340 342 this.IsSandbox = (branch == "jenkins-sandbox")343 341 this.RunAllTests = param.RunAllTests 344 342 this.RunBenchmark = param.RunBenchmark
Note:
See TracChangeset
for help on using the changeset viewer.