Just a heads up: On March 24, 2025, starting at 4:30pm CDT / 19:30 UTC, the site will be undergoing scheduled maintenance for a few hours. During this time, the site might be unavailable for a short while. Thanks for your patience.
×Hello,
Here is my situation :
In Bamboo OnDemand, I am setting up a simple deployment project with a SSH task.
The task is responsible for pulling the source code from a Bitbucket Account to the target server (linux) in the web root drectory, and then for triggering PHPUnit tests on this new code.
To accomplish this, the SSH Task basically runs the following commands, and is set up with connexion using a user (john) and his password :
cd /path-to-web-root/ git pull origin master phpunit --configuration tests/phpunit_conf.xml --log-junit tests/phpunit_report.xml
Results :
the pulling is ok.
the phpunit commands leads to the following error :
"/usr/bin/env: php: No such file or directory"
Please notice that :
(1) If I replay the same scenario but with root user, phpunit is properly executed.
(2) If I run the same phpunit command as in the SSH Task, directly from the server command line, logged in as user john, phpunit also works.
(3) phpunit is installed on the target server via the "phar" file, and is version 3.7.37
(4) on the target server, php is here : /usr/local/php5.5.6/bin/php5php
I really don't get why it works in one case and not the other.
Any help possible on this one ?
It looks like a permission problem, or a path problem... I don't know I am really not a server expert
:)
Jess
So, I reply to myself :
The problem was simply that the PATH variable was different from user root and user john, so it couldn't find phpunit...
hope it will help someone :)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.