Skip to content

Commit 7068da6

Browse files
authored
Merge pull request #66 from concourse/multi-platform
Add IMAGE_PLATFORM param
2 parents b5c639e + e0ea63e commit 7068da6

File tree

4 files changed

+30
-0
lines changed

4 files changed

+30
-0
lines changed

README.md

+5
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,11 @@ Next, any of the following optional parameters may be specified:
101101
name. For example, `IMAGE_ARG_base_image=ubuntu/image.tar` will set
102102
`base_image` to a local image reference for using `ubuntu/image.tar`.
103103
104+
* `IMAGE_PLATFORM`: Specify the target platform to build the image for. For
105+
example `IMAGE_PLATFORM=linux/arm64` will build the image for the Linux OS
106+
and `arm64` architecture. By default, images will be built for the current
107+
worker's platform that the task is running on.
108+
104109
* `$LABEL_*`: params prefixed with `LABEL_` will be set as image labels.
105110
For example `LABEL_foo=bar`, will set the `foo` label to `bar`.
106111

task.go

+6
Original file line numberDiff line numberDiff line change
@@ -148,6 +148,12 @@ func Build(buildkitd *Buildkitd, outputsDir string, req Request) (Response, erro
148148
)
149149
}
150150

151+
if req.Config.ImagePlatform != "" {
152+
buildctlArgs = append(buildctlArgs,
153+
"--opt", "platform="+req.Config.ImagePlatform,
154+
)
155+
}
156+
151157
builds = append(builds, buildctlArgs)
152158
targets = append(targets, "")
153159

task_test.go

+17
Original file line numberDiff line numberDiff line change
@@ -531,6 +531,23 @@ func (s *TaskSuite) TestAddHosts() {
531531
s.NoError(err)
532532
}
533533

534+
func (s *TaskSuite) TestImagePlatform() {
535+
s.req.Config.ContextDir = "testdata/basic"
536+
s.req.Config.ImagePlatform = "linux/arm64"
537+
538+
_, err := s.build()
539+
s.NoError(err)
540+
541+
image, err := tarball.ImageFromPath(s.imagePath("image.tar"), nil)
542+
s.NoError(err)
543+
544+
configFile, err := image.ConfigFile()
545+
s.NoError(err)
546+
547+
s.Equal("linux", configFile.OS)
548+
s.Equal("arm64", configFile.Architecture)
549+
}
550+
534551
func (s *TaskSuite) build() (task.Response, error) {
535552
return task.Build(s.buildkitd, s.outputsDir, s.req)
536553
}

types.go

+2
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,8 @@ type Config struct {
7777
ImageArgs []string `json:"image_args" envconfig:"optional"`
7878

7979
AddHosts string `json:"add_hosts" envconfig:"BUILDKIT_ADD_HOSTS,optional"`
80+
81+
ImagePlatform string `json:"image_platform" envconfig:"optional"`
8082
}
8183

8284
// ImageMetadata is the schema written to manifest.json when producing the

0 commit comments

Comments
 (0)