-
Notifications
You must be signed in to change notification settings - Fork 645
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
change buildAndLoadNativePlatform to buildAndLoadSinglePlatform #1665
change buildAndLoadNativePlatform to buildAndLoadSinglePlatform #1665
Conversation
Signed-off-by: Marsette Vona <martyvona@gmail.com>
LGTM. @rohanKanojia, feel free to merge. |
Codecov Report
@@ Coverage Diff @@
## master #1665 +/- ##
=========================================
Coverage 63.85% 63.86%
- Complexity 2184 2185 +1
=========================================
Files 170 170
Lines 9947 9949 +2
Branches 1363 1364 +1
=========================================
+ Hits 6352 6354 +2
Misses 3062 3062
Partials 533 533
|
@martyvona : Thanks, Could you please add a test and a line to doc/changelog.md regarding this change? |
Signed-off-by: Marsette Vona <martyvona@gmail.com>
Signed-off-by: Marsette Vona <martyvona@gmail.com>
Signed-off-by: Marsette Vona <martyvona@gmail.com>
@rohanKanojia done |
Kudos, SonarCloud Quality Gate passed! |
@rohanKanojia ready to merge |
This PR enables building a single-platform image with an architecture that differs from the native platform. For example, if you're build machine is an arm M1 but you need to test and deploy amd64. Note that while docker currently does not support multi-architecture images in the local image cache, it will use emulation to run e.g. an amd64 image on an arm host.
This is in follow up to #1557 (comment)