Ericsson / clang

Cross Translation Unit analysis capability for Clang Static Analyzer. (Fork of official clang at http://llvm.org/git/clang)
http://clang.llvm.org/
Other
15 stars 10 forks source link

add clang to CTU analysis pipeline #571

Closed dkrupp closed 5 years ago

dkrupp commented 5 years ago

On ci2

dkrupp commented 5 years ago

jenkins timeouts due to too long job. fix that.

gamesh411 commented 5 years ago

Long-running Jenkins jobs should have this parameter defined at high-enough value: org.jenkinsci.plugins.durabletask.BourneShellScript.HEARTBEAT_CHECK_INTERVAL I have set it on the relevant Jenkins server to 86400. This can be set via the console, or by specifying it in JAVA_OPTS when using the docker image: console:

Console: System.setProperty("org.jenkinsci.plugins.durabletask.BourneShellScript.HEARTBEAT_CHECK_INTERVAL", "86400");

Option: ... JAVA_OPTS="-Dorg.jenkinsci.plugins.durabletask.BourneShellScript.HEARTBEAT_CHECK_INTERVAL=86400" ...

martong commented 5 years ago

Console:

Is this the script console?

gamesh411 commented 5 years ago

Yes, the one which can be accessed via "Manage Jenkins" > "Script Console".