Files
dusk/.ci/dolphin/build-gamecube.sh
Dominic Masters b2affbc0a7
Some checks failed
Build Dusk / build-gamecube (push) Failing after 39s
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 something else?
2026-02-06 13:56:39 -06:00

13 lines
440 B
Bash
Executable File

#!/bin/bash
docker build -t myapp:latest -f ./.ci/dolphin/Dockerfile .
docker run -v ./:/gamecube myapp:latest /bin/bash -c ' \
export PATH="$DEVKITPPC/bin:$PATH" && \
ls -l && \
cd /gamecube && \
ls -l && \
rm -rf build-gamecube && \
mkdir -p build-gamecube && \
cmake -S. -Bbuild-gamecube -DDUSK_TARGET_SYSTEM=gamecube -DCMAKE_TOOLCHAIN_FILE="$DEVKITPRO/cmake/GameCube.cmake" && \
cd build-gamecube && \
make VERBOSE=1
'