TFS and golang continuous integration

I am tracking my files golang app

in local TFS server

, integrated with git

. I want to define steps build

, test

and deploy

, but I cannot find a tool for that.

How can I define the step build

and test

for the project that is showing test results

in Team web site

? thank.

+3


source to share


1 answer


You can use the vNext build system in TFS2017 and add a command line task to the build definition to run build and test in the same way you do on your local machine: enter image description here Then add the "Publish Test Result" task to publish the test result to TFS so that you can check the test result on the TFS website. The limitation is that the Publish Test Result task only supports four test result formats: JUnit, NUnit, VSTest, and XUnit.



+1


source







All Articles