chiaki/scripts/run-docker-build-appimage.sh
Florian Märkl 7d820bd4ab Update and fix CI
* appimage: switched to bionic
* android: updated container for nanopb changes
* switch: updated devkitpro and simpler cmake scripts
2022-03-26 18:33:15 +01:00

15 lines
292 B
Bash
Executable file

#!/bin/bash
set -xe
cd "`dirname $(readlink -f ${0})`"
docker build -t chiaki-bionic . -f Dockerfile.bionic
cd ..
docker run --rm \
-v "`pwd`:/build/chiaki" \
-w "/build/chiaki" \
--device /dev/fuse \
--cap-add SYS_ADMIN \
-t chiaki-bionic \
/bin/bash -c "scripts/build-appimage.sh"