Re: Jenkins having issues?
hey all... so this has been happening intermittently and i'm not sure what's causing it. sometimes directories under the target/tmp/ dir get created w/o the owner write bit set, so that they look like this: dr-xr-xr-x. 2 jenkins jenkins 4096 Aug 9 01:28 /home/jenkins/workspace/SparkPullRequestBuilder/target/tmp/spark-67a08260-3318-42ec-b12d-65c700f8f220 this means that the next build that runs in that directory space fails when 'git clean -fdx' encounters a directory that it can't remove. for now, i've added the following lines to the pull request builder run script (before the git clean command) to fix the target/ dir: echo "fixing target dir permissions" chmod -R +w target/* other than that, i'm looking around the codebase some older builds and seeing if i can't find the culprit. -- Forwarded message -- From: Cheolsoo Park Date: Fri, Aug 14, 2015 at 4:11 PM Subject: Jenkins having issues? To: Dev Hi devs, Jenkins failed twice in my PR for unknown error- https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/40930/console https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/40931/console Can you help? Thank you! Cheolsoo - To unsubscribe, e-mail: dev-unsubscr...@spark.apache.org For additional commands, e-mail: dev-h...@spark.apache.org
Re: Jenkins having issues?
Thank you for looking into it. On Tue, Aug 18, 2015 at 4:26 PM, shane knapp wrote: > hey all... so this has been happening intermittently and i'm not sure > what's causing it. > > sometimes directories under the target/tmp/ dir get created w/o the > owner write bit set, so that they look like this: > dr-xr-xr-x. 2 jenkins jenkins 4096 Aug 9 01:28 > > /home/jenkins/workspace/SparkPullRequestBuilder/target/tmp/spark-67a08260-3318-42ec-b12d-65c700f8f220 > > this means that the next build that runs in that directory space fails > when 'git clean -fdx' encounters a directory that it can't remove. > > for now, i've added the following lines to the pull request builder > run script (before the git clean command) to fix the target/ dir: > > echo "fixing target dir permissions" > chmod -R +w target/* > > other than that, i'm looking around the codebase some older builds and > seeing if i can't find the culprit. > -- Forwarded message -- > From: Cheolsoo Park > Date: Fri, Aug 14, 2015 at 4:11 PM > Subject: Jenkins having issues? > To: Dev > > > Hi devs, > > Jenkins failed twice in my PR for unknown error- > > > https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/40930/console > > https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/40931/console > > Can you help? > > Thank you! > Cheolsoo >