mirror of
https://github.com/docker/build-push-action.git
synced 2025-08-11 19:12:16 +00:00
The remote builder was hardcoded to use --platform linux/amd64 regardless of user input or runner architecture. This caused performance issues on ARM runners and cache inefficiencies. Now properly uses the platforms input or detects host architecture to avoid unnecessary QEMU emulation and improve build performance. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
8 lines
126 B
TypeScript
8 lines
126 B
TypeScript
export const execa = jest.fn().mockImplementation(() => {
|
|
return {
|
|
stdout: '',
|
|
stderr: '',
|
|
exitCode: 0
|
|
};
|
|
});
|