Andys
Andys

Reputation: 43

Using Jenkins with Unity test Framework

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? enter image description here

Upvotes: 0

Views: 217

Answers (1)

Andys
Andys

Reputation: 43

I found that the makefile executed correctly after changing the owner of my source code to jenkins.

Upvotes: 0

Related Questions