mirror of
https://github.com/esphome/esphome.git
synced 2024-11-10 09:17:46 +01:00
19 lines
370 B
Text
19 lines
370 B
Text
|
#!/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
|