-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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
Add option to run custom architecture (container platform) #525
Conversation
c42bde4
to
5fd0b5e
Compare
Ok, I have currently no idea where it fails... |
5fd0b5e
to
270b5c5
Compare
Current test will fail as it's dependent on #524 |
270b5c5
to
cc1e382
Compare
064f518
to
4e7adc7
Compare
@cplee Let me know if there is anything wrong. |
if !exists { | ||
return err | ||
} |
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.
The code always exits here with err nil
and the code below won't get executed, which causes local docker actions to be skipped.
This is caused by container.NewDockerBuildExecutor
returning a function which is not executed here, but in line 483.
/cc @catthehacker @cplee
Closes #493