Hi, a more general question, how would you deploy for example a Lambda function from your stack if the function code is written in Go aswell?
For functions written in Python or JS/TS with NodeJS as Runtime, it is easy, just grab the Code via a FileArchive.
But how do you compile a binary from the source code before stuffing the output into the archive?
In AWS I could make use of a Codebuild job that would first compile the binary before starting the Pulumi infrastructure code. But from my stack or is this approach too far-fetched?