We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 474315c commit 54366fbCopy full SHA for 54366fb
Jenkinsfile
@@ -374,7 +374,8 @@ void buildGUI(stash) {
374
sh 'autoconf'
375
sh 'CONFIG=`./config.status --config` && ./configure `eval $CONFIG`'
376
sh 'touch omc omc-diff ReferenceFiles && make -q omc omc-diff ReferenceFiles' // Pretend we already built omc since we already did so
377
- sh "make -j${numPhysicalCPU()} --output-sync" // Builds the GUI files
+ // OMSimulator requires HOME to be set and writeable
378
+ sh "HOME='${env.WORKSPACE}' make -j${numPhysicalCPU()} --output-sync" // Builds the GUI files
379
}
380
381
void generateTemplates() {
0 commit comments