scoffin
scoffin

Reputation: 35

What is the path when using Team Foundation Version Control (TFVC) as the VCS for a Jenkins project?

I'm trying to connect a Jenkins project to a Visual Studio Team Services repository.

If I use the "Git" option for the VCS in the configurations (as I've seen in most tutorials), I get authentication issues, and entering my credentials does not remedy the error. If I use the "Team Foundation Version Control" option, it accepts the repository URL without any errors, but it asks me for the "project path."

So, my question is actually twofold:

I've attached a screenshot below for reference. Any and all advice will be appreciated.

Jenkins VCS config screenshot

Upvotes: 1

Views: 1169

Answers (1)

starian chen-MSFT
starian chen-MSFT

Reputation: 33698

Regarding git authentication issue, you can use Personal Access Token (username can be anything, such as test) or Alternate Authentication Credentials. The same as TFVC.

Regarding the path, it is the server path of TFVC

  1. Go to Code page of team project
  2. Select Files tab
  3. Select a folder
  4. Get the path

enter image description here

Upvotes: 1

Related Questions