You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fixes issue where change from make to mage, result in the loss of creating multiple platform images.
(cherry picked from commit 5c01471)
Co-authored-by: Michel Laterman <82832767+michel-laterman@users.noreply.github.com>
// platformsDocker is the list of all platforms that are supported by docker multiplatform builds.
133
+
platformsDocker= []string{
134
+
"linux/amd64",
135
+
"linux/arm64",
136
+
}
137
+
131
138
// platformRemap contains mappings for platforms where if the GOOS/GOARCH key is used, artifacts should use the value instead. Missing keys are unalted.
132
139
platformRemap=map[string]string{
133
140
"darwin/amd64": "darwin/x86_64",
@@ -278,6 +285,26 @@ var (
278
285
returnlist
279
286
})
280
287
288
+
// getDockerPlatforms returns a list of supported docker multiplatform targets.
0 commit comments