golang / go

The Go programming language
https://go.dev
BSD 3-Clause "New" or "Revised" License
122.89k stars 17.52k forks source link

cmd/go: add support for Azure DevOps Git repos to go get #28236

Closed MrWako closed 3 years ago

MrWako commented 5 years ago

Please answer these questions before submitting your issue. Thanks!

What version of Go are you using (go version)?

go1.11 windows/amd64

Does this issue reproduce with the latest release?

yes

What operating system and processor architecture are you using (go env)?

GOHOSTARCH=amd64 GOHOSTOS=windows GOOS=windows

What did you do?

I created a few public Azure DevOps repos to illustrate the problems

Then when trying to get the package with the main function I get:

go get -v dev.azure.com/markawakefield/GoGetTest/_git/app
Fetching https://dev.azure.com/markawakefield/GoGetTest/_git/app?go-get=1
Parsing meta tags from https://dev.azure.com/markawakefield/GoGetTest/_git/app?go-get=1 (status code 200)
package dev.azure.com/markawakefield/GoGetTest/_git/app: unrecognized import path "dev.azure.com/markawakefield/GoGetTest/_git/app" (parse https://dev.azure.com/markawakefield/GoGetTest/_git/app?go-get=1: no go-import meta tags ())

I think because go get does not know its a Git repo, and there are no meta tags supplied to indicate that it is. If I try to just get one of the other packages with a .git extension I get:

go get -v dev.azure.com/markawakefield/GoGetTest/_git/stringfmt.git
# cd .; git ls-remote https://dev.azure.com/markawakefield/GoGetTest/_git/stringfmt
Logon failed, use ctrl+c to cancel basic credential prompt.
fatal: could not read Username for 'https://dev.azure.com': terminal prompts disabled
# cd .; git ls-remote git+ssh://dev.azure.com/markawakefield/GoGetTest/_git/stringfmt
ssh: connect to host dev.azure.com port 22: Connection timed out
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.
# cd .; git ls-remote ssh://dev.azure.com/markawakefield/GoGetTest/_git/stringfmt
ssh: connect to host dev.azure.com port 22: Connection timed out
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.
package dev.azure.com/markawakefield/GoGetTest/_git/stringfmt.git: cannot download, git://dev.azure.com/markawakefield/GoGetTest/_git/stringfmt uses insecure protocol

I think because the .git extension on the URL is not being passed to the git commands, and therefore it hits an authenticated endpoint.

What did you expect to see?

I expected (hoped) to see the packages add to the GOPATH under the dev.azure.com directory.

What did you see instead?

No files added to the GOPATH

I appreciate that this is not a pure issue with the current Go tool chain, more a miss-match between the conventions of Go and Azure DevOps, and has been noted elsewhere including http://ppanyukov.github.io/2017/02/01/golang-with-vsts-repos.html. Please let me know if a proposal is more appropriate.

For other cloud providers (IBM/Apache/OpenStack) there is logic to accomodate these differences and for Azure DevOps its actually a little worse than just the go get issue as even if this command completed the package ends up under a _git directory and so will be ignored in some instances due to the underscore.

Until now we have used Glide for package management which has allowed us to work around the issue but we would now like to adopt versioned packages so the issue is becoming more pressing.

I'll open a PR with a small revision addressing the issue that can be discussed/reviewed.

Thanks

gopherbot commented 5 years ago

Change https://golang.org/cl/142678 mentions this issue: cmd/go/internal/get: fix go get for Azure DevOps Git repos

rsc commented 5 years ago

@FiloSottile, it would be nice to say what the decision is when you add the NeedsDecision label.

rsc commented 5 years ago

Note that GitHub generates the \ tags that the go command needs, so that GitHub-hosted code works with go get regardless of domain (e.g., GitHub Enterprise, although github.com has the tags too). At this point it would be nice if hosting sites like dev.azure.com would put the tags in and therefore own their meaning, instead of making the go project source code the source of truth. (That made sense early on when no one had heard of Go and not many sites cared.)

MrWako commented 5 years ago

thanks @rsc - meta tags on the Azure side is definitely another solution route, although due to the .../_git/... in the URLs, it would be more involved than MS just adding these to the existing address. Azure could, or I could, host vanity URLs with the meta tags pointing to the existing repo URLs but this is starting to get more involved and I'd really appreciate a simpler solution.

MrWako commented 5 years ago

Just adding the links to the issues on the Azure DevOps side:

to indicate that the mismatch between Azure DevOps and Go is a real problem for developers that have no choice but to use Azure DevOps, but want to champion Go.

FiloSottile commented 5 years ago

@FiloSottile, it would be nice to say what the decision is when you add the NeedsDecision label.

Will do. In this instance I'd like an owner of cmd/go to decide if we are still expanding the special case mappings, and if so what transformations should be applied to this one, as it seems to be the only one that magically adds a component to the path.

For the record, I do believe adding <meta> tags at the desired path would serve Azure DevOps best, providing them with more control, flexibility (no issues with adding path components at the right spot) and probably compatibility as there might be tools that extracted the mappings from an existing version of Go (although they should use the go tool instead).

MrWako commented 5 years ago

@bketelsen perhaps you could add your experience, thanks.

crsdrw commented 5 years ago

@rsc Whilst I think it would be a good idea for dev.azure.com to add tags, even if they did, I don't think that would solve the problem. As @MrWako says, because dev.azure.com repository paths have a .../_git/... in them go get results in folders that start with an underscore. One solution to this problem would be to "fix" the go tooling like go list so that it can handle folders that start with an underscore but it seems like an easier solution is to change go get. With the added benefit of getting cleaner import paths for dev.azure.com repositories.

It might be a hard sell to convince MS to host vanity urls for dev.azure.com repositories because of the way go tooling handles folders that start with an underscore, although we are trying.

FiloSottile commented 5 years ago

To be clear I'm not suggesting having import paths with _git in them, but serving meta tags from https://dev.azure.com/markawakefield/GoGetTest/app[/*] pointing to https://dev.azure.com/markawakefield/GoGetTest/_git/app.

crsdrw commented 5 years ago

@FiloSottile I doubt MS will be able to serve pages at those exact urls as they might conflict with other pages, for example there already pages like https://dev.azure.com/markawakefield/GoGetTest/_workitems, https://dev.azure.com/markawakefield/GoGetTest/_build.

FiloSottile commented 5 years ago

If they all start with _ they shouldn't ever conflict with Go import paths. Also, the meta tag is not user visible, so it can be served on any page, even unrelated, to describe the import path to repository mapping.

Anyway, I'm not the relevant owner, I was just suggesting that meta tags would be a solution that MS can control, deploy independently, and it would be backwards compatible instead of only working with Go 1.12 and with tools that didn't hardcode the existing set.

rsc commented 5 years ago

What is the name space under (say) dev.azure.com/markawakefield/GoGetTest? What kinds of names can appear after the underscore?

rsc commented 5 years ago

Unless Go users really want to see _git in their import paths, the fix here should really be on dev.azure.com's side.

MrWako commented 5 years ago

Hi @rsc names that can appear after the underscore are basically all the kinds that Azure has for its task tracking/development process, so things like _workitems (for you assigned workitems), _sprints (for sprint related views), _boards (for kanban-ish views), etc.

MrWako commented 5 years ago

Thanks all, this has been a healthy discussion, how do we try and get to a decision?

Coming to a decision is probably nearly as important than what the decision is so that I can make plans what to do next. Thanks,

crsdrw commented 5 years ago

@rsc, @FiloSottile I think perhaps for historical reasons, they also serve pages (or redirect) if you put the name of a project team after the name of the project. For example: dev.azure.com/crsdrw/GoGetTest/BackendTeam/_git/app

kaylangan commented 5 years ago

I'm a Program Manager for Azure DevOps. We've had this request several times over the past few years and I'd love if we could come to a solution for our Go users.

While meta tags don't exist for Azure DevOps, adding those alone will not solve the problem. As others have noted, the crux of the issue is the presence of "_git" in the URLs. We use "_git" as a marker for routing, along with other markers like "_workitems", _dashboards", etc. Our Git URLs specify organization, project, and repo, but have also historically included team name with some of those components being optional (or omitted) if they are identical. Our Git URLs also require "_git" (except for SSH, but I believe that go git doesn't support SSH?).

What is the name space under (say) dev.azure.com/markawakefield/GoGetTest? What kinds of names can appear after the underscore?

@rsc There is a fixed set of names that can come after an underscore (e.g. _git, _workitems, _builds); project names cannot start with an underscore.

To be clear I'm not suggesting having import paths with _git in them, but serving meta tags from https://dev.azure.com/markawakefield/GoGetTest/app[/*] pointing to https://dev.azure.com/markawakefield/GoGetTest/_git/app.

@FiloSottile Unfortunately, this won't work. This scheme matches https://dev.azure.com/{organization}/{project}/{team-name} and redirects to the dashboards directory page: https://dev.azure.com/{organization}/{project}/_dashboards/directory?teamId={team-name}. We've looked at other formats but we run into collisions without "_git".

It sounds like the hesitation is around adding another special case mapping to cmd/go? Is there more information that I could provide that might make a decision on this easier?

FiloSottile commented 5 years ago

This scheme matches https://dev.azure.com/{organization}/{project}/{team-name} and redirects to the dashboards directory page: https://dev.azure.com/{organization}/{project}/_dashboards/directory?teamId={team-name}. We've looked at other formats but we run into collisions without "_git".

I'm not sure I understand. You're in control of the meta tags, can't you just not serve a tag at https://dev.azure.com/{organization}/{project}/_dashboards/...?

If there is no way to map a space without underscores to the correct repositories, then doing the mapping in cmd/go won't help, and you need underscores in import paths, which will break many things we don't have control over. If there is a way to do such a mapping, you can do it by serving meta tags just as well as we can do it in cmd/go, and it will be more backwards compatible, better serving our shared users.

rsc commented 5 years ago

Sorry but it's too late now for Go 1.12. Moving to the Go 1.13 queue and marking as a proposal.

bcmills commented 5 years ago

The original report and associated blog post note that one of the blockers to using <meta> tags is that those endpoints require authentication. Note that we now have a design for HTTPS authentication for Go 1.13: https://github.com/golang/go/issues/26232#issuecomment-461525141.

bcmills commented 5 years ago

It's not clear to me why there would be an issue with redirects: why can't the server either suppress the redirect when it sees the go-get=1 query parameter, or serve the meta tags on the redirected page for all of the import paths that redirect to it?

gopherbot commented 5 years ago

Timed out in state WaitingForInfo. Closing.

(I am just a bot, though. Please speak up if this is a mistake or you have the requested information.)

m1o1 commented 5 years ago

Any update here? I can't seem to figure out how to get Go modules working in Azure DevOps.

With glide, I was able to specify something like:

- package: {organization}.visualstudio.com/{project}/mypackage
  version: v1.1.1
  repo: https://{organization}.visualstudio.com/{project}/_git/mypackage
  vcs: git
  subpackages:
  - anotherpackage
  - some/other/subpackage

This, combined with setting

git config --global url.https://${GIT_ACCESS_TOKEN}@{organization}.visualstudio.com.insteadOf https://{organization}.visualstudio.com;

worked.

However, we wish to switch to Go modules, which doesn't seem to have an equivalent setting (notice how the package name is valid without an underscore in the glide config - the repo field has the underscore). I tried using a replace directive but got this (even when supplying a version):

replacement module without version must be directory path

Playing around with it for a while, I'm not sure how a go.mod file should look to get the same functionality (if it's possible).

crsdrw commented 5 years ago

@adinunzio84 The only workaround I am aware of is to host your own vanity URL service so that you can define your own import path. See here for some example source code. But it seems a sad state of affairs.

bcmills commented 5 years ago

@adinunzio84, this issue timed out awaiting a reply to the question in https://github.com/golang/go/issues/28236#issuecomment-462011842.

We do not plan to add another special case without further evidence for why the general mechanism (go-import tags) cannot be used here.

brkerr commented 5 years ago

Did anything change on the Go side for the repro in the issue description? I can run "go get" with the urls to your public repos and as long as I append ".git" to the end it works for me.

Also what are the specific issues with having the underscore in the path? After I go get one of your repos I can import it in another go file and that works as well.

m1o1 commented 5 years ago

@brkerr I cannot get that to work. Do other commands work for you if you do not do "go get" first? With other repositories, go commands work without having to "go get" first (ex. running "go build" will find any missing dependencies - even if they're missing from the "go.mod" file - automatically when scanning the source. Also, "go mod download" should find them too if they're in your "go.mod" file)

brkerr commented 5 years ago

I'll try that out. I do know that if I make 2 public repos and have a go file in one import a go file in another, if I go get the one it correctly fetches the other.

I'm also working on adding go-import tags to repo urls in Azure DevOps and looking at a solution without underscores in them....just trying to understand what the actual issue is with the underscore.

m1o1 commented 5 years ago

@brkerr Actually, I just tried it out with my go-imports vanity URL service (which provides the go-import tag pointing requests originally going to /{account}/{project}/_git/{repo} to the correct place in my Azure repos), and I was able to use underscores in import paths too, provided the file itself doesn't start with an underscore (the package and its directory name can though).

I still had to do "go get -insecure" first though, since my vanity URL service is not secure. So maybe it's the other commands that would otherwise go find the dependencies that would break. I'm now curious what would break with underscores too.

brkerr commented 5 years ago

Can you show me what kinds of mappings you have from the _git repo url to the correct place? How does go handle importing nested packages in a git repo? If I wanted to use a package in a nested folder from git, would I "go get" just the repo root first and then import using the nested structure, or would I do that all in one import /{account}/{project}/_git/{repo}/{nested}/{packagename}?

m1o1 commented 5 years ago

I have a private sample repo - I assume if you're at Microsoft you can access it, but if not I'll need to find a way to send it to you privately. This demos everything I have to get it working, but the only thing I don't have working yet is submodules (or multi-module repos) (it works if I use a replace directive and point it to the relative path to it, but for realistically testing it (as if it were not a "submodule" of the module I made), it should not use that.

I think the best description is in Module-aware go get. But it sounds like what you're asking is when the go module directory is not at the root of the repository, in which we run into the same issue I mentioned above.

brkerr commented 5 years ago

No we don't have access to random private repos :smile: I think I better understand the problem now and I have a potential solution, it just might take a few weeks to get it released.

brkerr commented 5 years ago

It looks like we will have at least step 1 of the fix in for the next deployment - import tags will be served from the repo root url as well as {repo root}/{other subdirs}/{etc}. Note that these urls will still have _git in them as that was a slightly bigger change that impacted more than just my area. When I understand more about what problems are associated with underscores I can work on that part (I haven't found any issues in testing with public repos) but that should be a much easier fix now that this first one is in place.

brkerr commented 5 years ago

@adinunzio84 This has started rolling out, although it will take about a week to get everywhere. If you don't mind helping me verify what's fixed and what still needs fixing, can you (or anyone else in this thread) email me at my github alias [at]microsoft sometime next week?

m1o1 commented 5 years ago

@brkerr absolutely! Thanks for the work you've done on this. Can you give a sample import path (just the syntax/format)? Specifically will the import paths use the <org>.visualstudio.com/<project>/_git/<repo> format or the dev.azure.com/<user>/<project>/_git/<repo> format (or support both)? By the previous comments, it looks like it will use the dev one

brkerr commented 5 years ago

@adinunzio84 For the host format, most of the testing was done with dev.azure.com/<account>/ but routing should work the same with <account>.visualstudio.com/.

For the repo format, we support all existing web repo paths: .../<project>/<team>/_git/<repo> .../<project>/_git/<repo> .../_git/<project> <-- this one is for when project and repo are the same string

And special for go we support subfolders on those paths. Example full path: go get dev.azure.com/testProject/_git/testRepo/subFolder/packageFolder

If you email me your account name I can let you know specifically when the deployment reaches that account.

brkerr commented 5 years ago

@adinunzio84 It's about halfway deployed at this point

sebnyberg commented 5 years ago

I may be missing something here but I can't get this to work for private repositories over HTTPS.

Since the SSH url does not include the _git segment, I've found that it's easiest to redirect HTTPS -> SSH via git config.

# redirect https -> ssh
git config --global url."git@ssh.dev.azure.com:v3".insteadOf https://dev.azure.com

# trust keys from ssh.dev.azure.com
ssh-keyscan ssh.dev.azure.com >> ~/.ssh/known_hosts

I initialize my go module with:

go mod init dev.azure.com/{org}/{project}/{repo}.git

Then import (don't forget to add .git at the end):

import (
  "dev.azure.com/{org}/{project}/{repo}.git/path/to/package"
)

For more info check this comprehensive post on different options: https://smartystreets.com/blog/2018/09/private-dependencies-in-docker-and-go

ablomber commented 5 years ago

@brkerr Thank you for working in this feature. I'm coming from the itron account and would like to try testing this out, it will allow me to pull out a bunch of hacky workarounds in my repos for fetching go code from our azure devops repos.

I will give it a trial run and send you feedback once I do.

Best regards, -Adam

brkerr commented 5 years ago

@sebnyberg I haven't tried via ssh but I had success with private repos by creating a PAT and adding something like this to the gitconfig:

[url "https://<user>:<PAT>@dev.azure.com/<account>/_git/<repo>"] insteadOf = https://dev.azure.com/<account>/_git/<repo>

psandhu79 commented 5 years ago

@brkerr do you have any tips on how you can use your suggestion in CI/CD pipeline

sikemullivan commented 5 years ago

Microsoft documented how to get this to work. Thought I would share.

https://docs.microsoft.com/en-us/azure/devops/repos/git/go-get?view=azure-devops

m1o1 commented 5 years ago

I've found that the git config can work as a prefix too, so you don't need to make one for each repo, just one for each org (as they use different PATs):

[url "https://<org>:<TOKEN>@dev.azure.com/<org>"]
        insteadOf = https://dev.azure.com/<org>
sikemullivan commented 5 years ago

Are you using DevOps pipelines? I'm trying to run a build (Ubuntu Host) and use bash to set the gitconfig with the build's access token. For some reason, it is not working the same. I ran out of time trying to figure it out last night, but I was wondering if git or go fetches the repo differently on ubuntu.

ablomber commented 5 years ago

Hi Michael,

I am using Azure DevOps pipelnes, and presently have a very ugly hack in place to work around the original problem.

Now that this gitconfig solution has been offered, I will attempt to put it in place and will let you know what results I have with it.

Thanks!

-Adam

From: Michael Sullivan notifications@github.com Sent: Wednesday, July 17, 2019 12:00 PM To: golang/go go@noreply.github.com Cc: Blomberg, Adam Adam.Blomberg@itron.com; Comment comment@noreply.github.com Subject: [EXTERNAL] Re: [golang/go] cmd/go: add support for Azure DevOps Git repos to go get (#28236)

Are you using DevOps pipelines? I'm trying to run a build (Ubuntu Host) and use bash to set the gitconfig with the access token. For some reason, it is not working the same. I ran out of time trying to figure it out last night.

— You are receiving this because you commented. Reply to this email directly, view it on GitHubhttps://urldefense.proofpoint.com/v2/url?u=https-3A__github.com_golang_go_issues_28236-3Femail-5Fsource-3Dnotifications-26email-5Ftoken-3DAMK3FT6CW2ILNJOZ2C56AITP746YBA5CNFSM4F37OOP2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD2E3VLA-23issuecomment-2D512342700&d=DwMCaQ&c=pqcuzKEN_84c78MOSc5_fw&r=iS-Hk51gmqz0ak8Lvc-WNkKlq81spWMXKffOaGXFz3c&m=cBtp8A8H-ZJKTjsQrPBLLy26-hFRxPebFonpSqvE8eQ&s=aywySDrFJNoOBQsXl6CNXx45xVwuLgvOIti04_x1b1c&e=, or mute the threadhttps://urldefense.proofpoint.com/v2/url?u=https-3A__github.com_notifications_unsubscribe-2Dauth_AMK3FTZLDNZ7YOMNPCBPDHLP746YBANCNFSM4F37OOPQ&d=DwMCaQ&c=pqcuzKEN_84c78MOSc5_fw&r=iS-Hk51gmqz0ak8Lvc-WNkKlq81spWMXKffOaGXFz3c&m=cBtp8A8H-ZJKTjsQrPBLLy26-hFRxPebFonpSqvE8eQ&s=9qv66gw67A4j6Fy1L3aPAQ02BPbZTUJ7H0IvYdK-UHw&e=.

sikemullivan commented 5 years ago

Here is what I have so far. I threw the git trace in, but it appeared that it wasn't even requesting anything. My thought was, "go build" will automatically install my private repo modules. I'll be working on this later tonight as well.

Edit: I removed the script task for dep, it was confusing. I'm using modules.

pool:
  vmImage: 'Ubuntu 16.04'

variables:
  GIT_TRACE_PERFORMANCE: true
  GIT_TRACE_SETUP: true
  GOVERSION: '1.12.7'
  GOBIN:  '$(GOPATH)/bin' # Go binaries path
  GOROOT: '$(Agent.BuildDirectory)/go' # Go installation path
  GOPATH: '$(Agent.BuildDirectory)/gopath' # Go workspace path
  GOSRC:  '$(GOPATH)/src'
  ACCESSTOKEN: '$(system.AccessToken)'
  modulePath: '$(GOSRC)/github.com/$(build.repository.name)' # Path to the module's code

steps:
- script: |
    wget "https://storage.googleapis.com/golang/go$(GOVERSION).linux-amd64.tar.gz" --output-document "$(Agent.BuildDirectory)/go$(GOVERSION).tar.gz"
    tar -C '$(Agent.BuildDirectory)' -xzf "$(Agent.BuildDirectory)/go$(GOVERSION).tar.gz"
  displayName: 'Install Go 1.12'
- script: |
    mkdir -p '$(GOBIN)'
    mkdir -p '$(GOPATH)/pkg'
    mkdir -p '$(modulePath)'
    shopt -s extglob
    mv !(gopath) '$(modulePath)'
    echo '##vso[task.prependpath]$(GOBIN)'
    echo '##vso[task.prependpath]$(GOROOT)/bin'
  displayName: 'Set up the Go workspace'

- script: |
    git config --global url."https://anything:$(ACCESSTOKEN)@dev.azure.com/mycompany/myproject/".insteadOf "https://dev.azure.com/mycompany/myproject/"

    env GOOS=freebsd GOARCH=amd64 go build
    cp myapp $(Build.ArtifactStagingDirectory)
    if [[ ! -f myapp ]] ; then
        echo 'File "myapp" was not built, aborting.'
        exit 1
    fi
    cp config.release.json $(Build.ArtifactStagingDirectory)/config.json
    cp -rf templates/ $(Build.ArtifactStagingDirectory)/templates/
    cp -rf static/ $(Build.ArtifactStagingDirectory)/static/
  workingDirectory: '$(modulePath)'
  displayName: 'Build'

- task: PublishBuildArtifacts@1
  inputs:
    pathtoPublish: '$(Build.ArtifactStagingDirectory)' 
    artifactName: 'drop'
jpreese commented 5 years ago

For clarity, has the go-imports meta tag been fully deployed? I'm not seeing the tag in our Azure DevOps repository that hosts a Go project.

sikemullivan commented 5 years ago

So git trace was telling the truth, nothing was happening. I was missing GO111MODULE: on. :man_facepalming: I have two modules that are being pulled down from private DevOps' repositories. :spades::hearts::clubs::diamonds::chicken::hamburger::beers:

This works wonderfully for GO 1.12.7


pool:
  vmImage: 'Ubuntu 16.04'

variables:
  GOVERSION: '1.12.7'
  GOBIN:  '$(GOPATH)/bin' # Go binaries path
  GOROOT: '$(Agent.BuildDirectory)/go' # Go installation path
  GOPATH: '$(Agent.BuildDirectory)/gopath' # Go workspace path
  GOSRC:  '$(GOPATH)/src'
  GO111MODULE: on
  ACCESSTOKEN: '$(system.AccessToken)'
  modulePath: '$(GOSRC)/github.com/$(build.repository.name)' # Path to the module's code

steps:
- script: |
    wget "https://storage.googleapis.com/golang/go$(GOVERSION).linux-amd64.tar.gz" --output-document "$(Agent.BuildDirectory)/go$(GOVERSION).tar.gz"
    tar -C '$(Agent.BuildDirectory)' -xzf "$(Agent.BuildDirectory)/go$(GOVERSION).tar.gz"
  displayName: 'Install Go 1.12'
- script: |
    mkdir -p '$(GOBIN)'
    mkdir -p '$(GOPATH)/pkg'
    mkdir -p '$(modulePath)'
    shopt -s extglob
    mv !(gopath) '$(modulePath)'
    echo '##vso[task.prependpath]$(GOBIN)'
    echo '##vso[task.prependpath]$(GOROOT)/bin'
  displayName: 'Set up the Go workspace'

- script: |
    git config --global url."https://anything:$(ACCESSTOKEN)@dev.azure.com/mycompany/myproject/".insteadOf "https://dev.azure.com/mycompany/myproject/"

    env GOOS=freebsd GOARCH=amd64 go build
    cp myapp $(Build.ArtifactStagingDirectory)
    if [[ ! -f myapp ]] ; then
        echo 'File "myapp" was not built, aborting.'
        exit 1
    fi
    cp config.release.json $(Build.ArtifactStagingDirectory)/config.json
    cp -rf templates/ $(Build.ArtifactStagingDirectory)/templates/
    cp -rf static/ $(Build.ArtifactStagingDirectory)/static/
  workingDirectory: '$(modulePath)'
  displayName: 'Build'

- task: PublishBuildArtifacts@1
  inputs:
    pathtoPublish: '$(Build.ArtifactStagingDirectory)' 
    artifactName: 'drop'
brkerr commented 5 years ago

Hey guys, sorry I've been on vacation for most of July.

@jpreese The tag has been fully deployed for over a month. If you're looking for the tag to be on the page that you load in your browser you won't see it. We are only adding the meta tag if the "go-get" query param is present and set to 1 (which is what Go tacks on when it makes the request).

@sikemullivan Thanks for working out the yaml, good to hear everything is working.

@adinunzio84 Thanks for the follow-up as well.

FYI The follow-up work to get a cleaner URL for public/private has been put on the backburner for now since it fell behind some higher priority features on the backlog. I'm still hoping to get to this but I don't have an ETA yet.

jpreese commented 5 years ago

@brkerr right, but I'm still not seeing it.

go get -u dev.azure.com/myorg/myproject/_git/myrepo

yields

package dev.azure.com/myorg/myproject/_git/myrepo: unrecognized import path "dev.azure.com/myorg/myproject/_git/myrepo" (parse https://dev.azure.com/myorg/myproject/_git/myrepo?go-get=1: no go-import meta tags ())

Running a curl looks like its just a redirect

 % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
100   615  100   615    0     0   3455      0 --:--:-- --:--:-- --:--:--  3455<html><head><title>Object moved</title></head><body>
<h2>Object moved to