forked from microsoft/azure-pipelines-tasks
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "Added Microsoft Go tool support (microsoft#19000)"
This reverts commit 3d8da00.
- Loading branch information
Showing
5 changed files
with
81 additions
and
137 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,81 +1,69 @@ | ||
{ | ||
"id": "334727F4-9495-4F9D-A391-FC621D671474", | ||
"name": "GoTool", | ||
"friendlyName": "Go tool installer", | ||
"description": "Find in cache or download a specific version of Go and add it to the PATH", | ||
"helpUrl": "https://docs.microsoft.com/azure/devops/pipelines/tasks/tool/go-tool", | ||
"helpMarkDown": "[Learn more about this task](https://go.microsoft.com/fwlink/?linkid=867581) or [see the Go documentation](https://golang.org/doc/)", | ||
"category": "Tool", | ||
"runsOn": [ | ||
"Agent", | ||
"DeploymentGroup" | ||
], | ||
"author": "Microsoft Corporation", | ||
"version": { | ||
"Major": 0, | ||
"Minor": 229, | ||
"Patch": 0 | ||
}, | ||
"satisfies": [ | ||
"GO" | ||
], | ||
"demands": [], | ||
"instanceNameFormat": "Use Go $(version)", | ||
"groups": [ | ||
{ | ||
"name": "advanced", | ||
"displayName": "Advanced", | ||
"isExpanded": false | ||
} | ||
], | ||
"inputs": [ | ||
{ | ||
"name": "version", | ||
"type": "string", | ||
"label": "Version", | ||
"defaultValue": "1.19", | ||
"required": true, | ||
"helpMarkDown": "The Go version to download (if necessary) and use. Example: 1.9.3" | ||
}, | ||
{ | ||
"name": "goPath", | ||
"type": "string", | ||
"label": "GOPATH", | ||
"helpMarkDown": "A custom value for the GOPATH environment variable.", | ||
"groupName": "advanced" | ||
"id": "334727F4-9495-4F9D-A391-FC621D671474", | ||
"name": "GoTool", | ||
"friendlyName": "Go tool installer", | ||
"description": "Find in cache or download a specific version of Go and add it to the PATH", | ||
"helpUrl": "https://docs.microsoft.com/azure/devops/pipelines/tasks/tool/go-tool", | ||
"helpMarkDown": "[Learn more about this task](https://go.microsoft.com/fwlink/?linkid=867581) or [see the Go documentation](https://golang.org/doc/)", | ||
"category": "Tool", | ||
"runsOn": [ | ||
"Agent", | ||
"DeploymentGroup" | ||
], | ||
"author": "Microsoft Corporation", | ||
"version": { | ||
"Major": 0, | ||
"Minor": 214, | ||
"Patch": 0 | ||
}, | ||
{ | ||
"name": "goBin", | ||
"type": "string", | ||
"label": "GOBIN", | ||
"helpMarkDown": "A custom value for the GOBIN environment variable.", | ||
"groupName": "advanced" | ||
}, | ||
{ | ||
"name": "goSource", | ||
"type": "pickList", | ||
"label": "Go source", | ||
"required": false, | ||
"defaultValue": "downloadFromDefaultSource", | ||
"options": { | ||
"downloadFromDefaultSource": "Go Tools", | ||
"downloadFromMicrosoftSource": "MS Go Tools" | ||
}, | ||
"helpMarkDown": "Go distribution to install" | ||
} | ||
], | ||
"execution": { | ||
"Node10": { | ||
"target": "gotool.js", | ||
"argumentFormat": "" | ||
"satisfies": [ | ||
"GO" | ||
], | ||
"demands": [], | ||
"instanceNameFormat": "Use Go $(version)", | ||
"groups": [ | ||
{ | ||
"name": "advanced", | ||
"displayName": "Advanced", | ||
"isExpanded": false | ||
} | ||
], | ||
"inputs": [ | ||
{ | ||
"name": "version", | ||
"type": "string", | ||
"label": "Version", | ||
"defaultValue": "1.10", | ||
"required": true, | ||
"helpMarkDown": "The Go version to download (if necessary) and use. Example: 1.9.3" | ||
}, | ||
{ | ||
"name": "goPath", | ||
"type": "string", | ||
"label": "GOPATH", | ||
"helpMarkDown": "A custom value for the GOPATH environment variable.", | ||
"groupName": "advanced" | ||
}, | ||
{ | ||
"name": "goBin", | ||
"type": "string", | ||
"label": "GOBIN", | ||
"helpMarkDown": "A custom value for the GOBIN environment variable.", | ||
"groupName": "advanced" | ||
} | ||
], | ||
"execution": { | ||
"Node10": { | ||
"target": "gotool.js", | ||
"argumentFormat": "" | ||
}, | ||
"Node16": { | ||
"target": "gotool.js", | ||
"argumentFormat": "" | ||
} | ||
}, | ||
"Node16": { | ||
"target": "gotool.js", | ||
"argumentFormat": "" | ||
"messages": { | ||
"FailedToDownload": "Failed to download Go version %s. Verify that the version is valid and resolve any other issues. Error: %s", | ||
"TempDirNotSet": "The 'Agent.TempDirectory' environment variable was expected to be set." | ||
} | ||
}, | ||
"messages": { | ||
"FailedToDownload": "Failed to download Go version %s. Verify that the version is valid and resolve any other issues. Error: %s", | ||
"TempDirNotSet": "The 'Agent.TempDirectory' environment variable was expected to be set." | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters