SCM Polling fails: Cannot run program cleartool

2012-11-22 Thread natalie_public
Hello everyone, Since a few days the clear case polling does not work anymore (I'm not 100% sure if it ever worked...). The scm_polling.log is as follows: -- Started on Nov 22, 2012 6:45:09 PM *** get view CSPEC *** [jobname] $ cleartool catcs

Solaris slave: NoClassDefFoundError: hudson/remoting/PipeWindow$Key

2012-08-27 Thread natalie_public
Hi there, I'm trying to use Jenkins to build a C++ project on SunOS 5.10. The master (Jenkins 1.477) runs on Windows XP, the compilation is executed on a slave (starnberg). I often get the following errors: -- Started by user anonymous [EnvInject] - Loading node environment variables. Building

ClearCase node != compile node: Notify users who broke the build

2012-08-21 Thread natalie_public
Hi there, I'm trying to use Jenkins to build a C++ application. Since ClearCase and compilation run on different operation systems, I created two jobs: The first job runs on Windows and extracts the code (to a Unix directory mounted as network drive on Windows). It triggers the second job

Re: Return value of a command in shell script != 0 stops build

2012-08-16 Thread natalie_public
Thanks for the many helpful replies! I decided to use set the option set +e before executing the script for the environment variables and to unset it afterward. It works perfectly! Natalie - Ursprüngliche Nachricht - Von: jenkins wilde Gesendet: 15.08.12 10:53 Uhr An:

Return value of a command in shell script != 0 stops build

2012-08-14 Thread natalie_public
Hi there, I'm using Jenkins to build a C++ project on Solaris 10. To set up the environment I'm calling various shell scripts, of which one contains the following code: -- for P in /usr/contrib/bin /usr/local/bin do        cd $P /dev/null 21        if [ $? -eq 0 ]        then