mirror of
https://github.com/esphome/esphome.git
synced 2024-11-10 09:17:46 +01:00
3d9301a0f7
* Rename * Update * Add migration * Fix * Fix dashboard * Change test * Fixes * Code cleanup * Fix import order * Update * Automate docker builds * Shellcheck
18 lines
370 B
Bash
Executable file
18 lines
370 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
# the architecture to build
|
|
declare BUILD_ARCH
|
|
|
|
echo "BUILD_ARCH: ${BUILD_ARCH}"
|
|
|
|
if [[ ${BUILD_ARCH} = "amd64" ]]; then
|
|
echo "No qemu required..."
|
|
exit 0
|
|
fi
|
|
if [[ ${BUILD_ARCH} = "i386" ]]; then
|
|
echo "No qemu required..."
|
|
exit 0
|
|
fi
|
|
|
|
echo "Installing qemu..."
|
|
docker run --rm --privileged multiarch/qemu-user-static:register --reset
|