-
Notifications
You must be signed in to change notification settings - Fork 594
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fixes go build
on windows
#4858
Conversation
cmd\cnbBuild.go:589:3: unknown field Credential in struct literal of type "syscall".SysProcAttr cmd\cnbBuild.go:589:24: undefined: syscall.Credential
Quality Gate passedIssues Measures |
highly appreciated - these errors drive me crazy |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm
/it |
@tiloKo thanks for the approval and the trigger of the integration tests... any idea why they are failing? The error message is a bit short and I can't see a relationship to my changes :-( |
honestly for my PRs I ignore the consumer tests as they seem to never work. the normal integration tests contain tests for this step and they were successful. The consumer tests seem to test other steps, e.g. mtabuild and tmsupload so I would vote for just ignoring them |
fine with me :-) @tiloKo do you have write permissions? Because I don't... who can now merge it? |
Currently the
go build
fails on windows machines with the following error:Because on Windows the
exec_windows.go
contains the struct like this:Which obviously doesn't have
Credential