I'm trying to get hudson setup on a Debian server to build a rails project, and its constantly falling over at the first hurdle.
I get the following sequence of messages everytime I try to run a build:
Started by user anonymous
Checkout:workspace / /var/lib/hudson/jobs/myproject/workspace - hudson.remoting.LocalChannel@2d61100c
Using strategy: Default
Last Built Revision: Revision caced2eba6ed6ba8a5bbcccbedb531bc28702f66 (origin/master)
Checkout:workspace / /var/lib/hudson/jobs/myproject/workspace - hudson.remoting.LocalChannel@2d61100c
GitAPI created
Wiping out workspace first
Cloning the remote Git repository
Cloning repository origin
$ /usr/bin/git clone -o origin [email protected]:/myproject.git /var/lib/hudson/jobs/myproject/workspace
Fetching upstream changes from [email protected]:/myproject.git
[workspace] $ /usr/bin/git fetch -t [email protected]:/myproject.git +refs/heads/*:refs/remotes/origin/*
[workspace] $ /usr/bin/git ls-tree HEAD
[workspace] $ /usr/bin/git rev-parse origin/master
ERROR: Nothing to do
Finished: FAILURE
My config is as follows:
url of repository: [email protected]:/myproject.git
repository : origin
branch to build: origin/master (have tried with just master, and with the default)
I have seen this error mentioned elsewhere online, but I have already configured my app in a way that should prevent the error....
So I have no idea why this is happening. Can anyone lend an insight?