-
-
Notifications
You must be signed in to change notification settings - Fork 262
Closed
Labels
Description
When I attempt to upgrade my Go module dependencies, I'm encountering the following error.
.../go/pkg/mod/github.com/ory/dockertest/v3@v3.6.0/docker/pkg/term/tc.go:13:28: undefined: unix.SYS_IOCTL
.../go/pkg/mod/github.com/ory/dockertest/v3@v3.6.0/docker/pkg/term/tc.go:18:28: undefined: unix.SYS_IOCTL
.../go/pkg/mod/github.com/ory/dockertest/v3@v3.6.0/docker/pkg/term/termios_bsd.go:24:31: undefined: unix.SYS_IOCTL
.../go/pkg/mod/github.com/ory/dockertest/v3@v3.6.0/docker/pkg/term/termios_bsd.go:37:31: undefined: unix.SYS_IOCTL
I was able to trace down the issue to the recent commit in golang/org/x/sys.
To Reproduce
From the root of my repository:
$ go mod init github.com/foo/bar
$ go mod edit -go=1.14
$ go get -u -t ./...
Expected behavior
The upgrade should complete successfully.
Environment
GOARCH="amd64"
GOHOSTARCH="amd64"
GOHOSTOS="darwin"
GOOS="darwin"
Reactions are currently unavailable