Files
dusk/.ci/dolphin/build-gamecube.sh
Dominic Masters 71768e6154
Some checks failed
Build Dusk / build-gamecube (push) Failing after 1m33s
Build Dusk / build-linux (push) Has been cancelled
Build Dusk / build-psp (push) Has been cancelled
Build Dusk / run-tests (push) Has been cancelled
Try outside
2026-02-06 14:45:07 -06:00

16 lines
605 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
# '