Skip to content

Commit 54366fb

Browse files
committed
OMSimulator requires HOME to be writeable
1 parent 474315c commit 54366fb

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Jenkinsfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -374,7 +374,8 @@ void buildGUI(stash) {
374374
sh 'autoconf'
375375
sh 'CONFIG=`./config.status --config` && ./configure `eval $CONFIG`'
376376
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
377+
// OMSimulator requires HOME to be set and writeable
378+
sh "HOME='${env.WORKSPACE}' make -j${numPhysicalCPU()} --output-sync" // Builds the GUI files
378379
}
379380

380381
void generateTemplates() {

0 commit comments

Comments
 (0)