Closed jasikpark closed 10 months ago
Hi @jasikpark, thanks for filing this!
presumably this is just a fail b/c tailscale has changed in the meantime perhaps?
At least the intent was to pin the tailscale version, so it might instead be that the pinned tailscale version does not like Go 1.19:
//go:build go1.13 && !go1.19
// +build go1.13,!go1.19
I'll take a closer look.... Thanks again!
One other quick side note is the way the CI is set up, the external repo tests are allowed to fail, including to deal with possibly changes like this over time, but I'll look into getting those healthy again.
I ended up disabling the larger test of the tailscale repo in #23. (It ended up effectively being a moving target due to their use of build constraints making it sensitive to changes in Go versions and so on).
We still test the terraform repo, and the most of the more interesting or initially problematic examples from the tailscale repo were extracted into standalone tests.
presumably this is just a fail b/c tailscale has changed in the meantime perhaps?