You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When importing "github.com/microsoftgraph/msgraph-sdk-go", the build simply fails.
Reproduce with the following commands (go 1.19):
mkdir demo
go mod init demo
cat <<EOF > main.go
package main
import (
"fmt"
msgraphsdk "github.com/microsoftgraph/msgraph-beta-sdk-go"
)
func main() {
fmt.Println("hi")
}
EOF
go mod tidy
go build main.go
In my case, the build just hangs until it fails with the following (includes time output):
go build github.com/microsoftgraph/msgraph-sdk-go/models: /usr/local/go/pkg/tool/linux_amd64/compile: signal: killed
go build -x main.go 68.65s user 6.95s system 85% cpu 1:28.74 total
The text was updated successfully, but these errors were encountered:
running GOMAXPROCS=200 go get -u does finish, but the build still hangs forever... to be honest I don't understand how importing a package (not even using it) can hang a build forever. Am I misunderstanding something or doing something wrong?
When importing "github.com/microsoftgraph/msgraph-sdk-go", the build simply fails.
Reproduce with the following commands (go 1.19):
In my case, the build just hangs until it fails with the following (includes time output):
The text was updated successfully, but these errors were encountered: