Has anyone seen a build fail in Jenkins but execute fine by the command line? This failure only occurs for one of our branches that we build.
The jenkins job is configured:
#!/bin/bash -ex
cd $GIT_TREE
git checkout -q $GERRIT_REFSPEC
cd pkt
emq <target> DBG=yes
This build fails in Jenkins for one of my release branches, but other release branches build without a problem
From a workspace on the same system where this runs, I can execute the same commands manually for the same release branch and the build completes successfully.
Does anyone have any ideas of what to look at in order to figure out what is wrong? I've done a comparison of the build output and lines are consistent until the build fails.
Thanks!