Reputation: 43
I am setting up a test system using the Unity Test framework ( Unity Test framework) and Jenkins.
In Unity, the Test are executed using a makefile, using the single command line make. This is working as it should from the command line. I have copied my source tree and test environment to the server containing my Jenkins instance. I can get Jenkins to run a simple echo "Hello World" job, but when I replace the build steps with the make command I get errors.
Started by user user Running as SYSTEM Building in workspace /bitnami/jenkins/home/workspace/EdTest [EdTest] $ /bin/sh -xe /tmp/jenkins9549502869208287065.sh
Do I need to change permission of the folder containing my source code?
Upvotes: 0
Views: 217
Reputation: 43
I found that the makefile executed correctly after changing the owner of my source code to jenkins.
Upvotes: 0