mirror of
https://git.sr.ht/~thestr4ng3r/chiaki
synced 2025-07-05 20:42:08 -07:00
* appimage: switched to bionic * android: updated container for nanopb changes * switch: updated devkitpro and simpler cmake scripts
15 lines
292 B
Bash
Executable file
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"
|
|
|