WithExcludeSourceCodeInfo returns a new BuildImageOption that excludes sourceCodeInfo.
()
| 293 | |
| 294 | // WithExcludeSourceCodeInfo returns a new BuildImageOption that excludes sourceCodeInfo. |
| 295 | func WithExcludeSourceCodeInfo() BuildImageOption { |
| 296 | return func(buildImageOptions *buildImageOptions) { |
| 297 | buildImageOptions.excludeSourceCodeInfo = true |
| 298 | } |
| 299 | } |
| 300 | |
| 301 | // WithNoParallelism turns off parallelism for a build. |
| 302 | // |
no outgoing calls
searching dependent graphs…