Anup Das Gupta
Anup Das Gupta

Reputation: 771

Bamboo and perforce integration issue

I am trying to add perforce repository for bamboo. But not able to make it. Getting following error while adding repository-

I have downloaded latest bamboo 30days trial and installed on my local machine. Bamboo is installed correctly as I am able to create automated build using MSBuild with BitBucket repository.

My bamboo instance is running on http://localhost:8085.

I have Downloaded and installed latest P4D and P4V from https://www.perforce.com/downloads and installed in the same machine. Perforce server and client are correctly configured as I am able to checkin source code to server using client. Running on port 1666. By client and server are both installed in C:\Program Files\Perforce.

enter image description here

I have added bamboo Server Capabilities for perforce.

enter image description here

On providing perforce detail while adding repository, getting following three alerts from p4v client-

enter image description here

User id and password are correct also url with port is correct. I am able to get data from repository with this detail.

p4v.exe is already there in my PATH and also I run p4v -help on command prompt, getting following result. I dont see any option named 'info'.

enter image description here

Upvotes: 0

Views: 243

Answers (1)

Bryan Pendleton
Bryan Pendleton

Reputation: 16359

p4v.exe is the GUI program for Perforce.

There is a command-line program for Perforce, called p4.exe.

When Bamboo says that it wants The location of the p4 client executable, you have to specify the path to p4.exe, not the path to p4v.exe.

When you downloaded and instlaled p4v.exe on your system, you should also have received a p4.exe (if not, download that program, too). Then specify the path to p4.exe to Bamboo.

Upvotes: 1

Related Questions