godot-xterm/addons/godot_xterm/native/docker-compose.yaml

26 lines
554 B
YAML
Raw Normal View History

2021-06-07 08:53:43 +02:00
services:
javascript:
build: ../../../misc/docker
2021-06-07 08:53:43 +02:00
user: ${UID_GID}
volumes:
- .:/src
command:
- /bin/bash
- -c
- |
cd /src/thirdparty/godot-cpp
scons platform=javascript target=$${TARGET:-debug} -j$$(nproc)
cd /src
scons platform=javascript target=$${TARGET:-debug} -j$$(nproc)
linux:
build: .
user: ${UID_GID}
volumes:
- .:/src
command:
- /bin/bash
- -c
- |
cd /src
/bin/bash ./build.sh --target ${TARGET} --bits ${BITS}