16 lines
601 B
Bash
Executable File
16 lines
601 B
Bash
Executable File
#!/bin/bash
|
|
docker build -t dolbuild:latest -f .ci/dolphin/Dockerfile .
|
|
docker run -u $(id -u):$(id -g) -w /app -v $(pwd):/app dolbuild:latest /bin/bash -c ' \
|
|
echo "Current dir" && \
|
|
realpath . && \
|
|
ls -l && \
|
|
echo "/app" && \
|
|
ls -l /app
|
|
'
|
|
# export PATH="$DEVKITPPC/bin:$PATH" && \
|
|
# # cmake -S. -Bbuildcube -DDUSK_TARGET_SYSTEM=gamecube -DCMAKE_TOOLCHAIN_FILE="$DEVKITPRO/cmake/GameCube.cmake" && \
|
|
# cmake -S. -Bbuildcube -DDUSK_TARGET_SYSTEM=wii -DCMAKE_TOOLCHAIN_FILE="$DEVKITPRO/cmake/Wii.cmake" && \
|
|
# cd buildcube && \
|
|
# make VERBOSE=1 && \
|
|
# cp ./Dusk.dol ./boot.dol
|
|
# ' |