Manually setup ppc
Some checks failed
Build Dusk / build-gamecube (push) Failing after 6s
Build Dusk / build-linux (push) Has been cancelled
Build Dusk / build-psp (push) Has been cancelled
Build Dusk / run-tests (push) Has started running

This commit is contained in:
2026-02-06 15:00:28 -06:00
parent 357607a89f
commit ee89c08160
2 changed files with 28 additions and 45 deletions

View File

@@ -1,16 +1,13 @@
#!/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
# '
docker build -t myapp:latest -f .ci/dolphin/Dockerfile .
docker run -it -v ./:/workdir myapp:latest /bin/bash -c ' \
export PATH="$DEVKITPPC/bin:$PATH" && \
cd /workdir && \
rm -rf build2 && \
mkdir -p build2 && \
# cmake -S. -Bbuild2 -DDUSK_TARGET_SYSTEM=gamecube -DCMAKE_TOOLCHAIN_FILE="$DEVKITPRO/cmake/GameCube.cmake" && \
cmake -S. -Bbuild2 -DDUSK_TARGET_SYSTEM=wii -DCMAKE_TOOLCHAIN_FILE="$DEVKITPRO/cmake/Wii.cmake" && \
cd build2 && \
make VERBOSE=1 && \
cp ./Dusk.dol ./boot.dol
'