Take sH out
Some checks failed
Build Dusk / build-gamecube (push) Failing after 56s
Build Dusk / build-wii (push) Failing after 44s
Build Dusk / build-linux (push) Has been cancelled
Build Dusk / build-psp (push) Has been cancelled
Build Dusk / run-tests (push) Has been cancelled

This commit is contained in:
2026-02-06 13:51:07 -06:00
parent bc72f48496
commit ec6b032b45
2 changed files with 12 additions and 2 deletions

View File

@@ -1,5 +1,5 @@
#!/bin/bash
docker build -t myapp:latest -f .ci/dolphin/Dockerfile .
docker build -t myapp:latest -f ./.ci/dolphin/Dockerfile .
docker run -v $PWD:/workdir myapp:latest /bin/bash -c ' \
export PATH="$DEVKITPPC/bin:$PATH" && \
ls -l && \

View File

@@ -21,7 +21,17 @@ jobs:
- name: Build GameCube
run: |
echo "Current directory: $(pwd)"
./.ci/dolphin/build-gamecube.sh
docker build -t myapp:latest -f ./.ci/dolphin/Dockerfile .
docker run -v $PWD:/workdir myapp:latest /bin/bash -c ' \
export PATH="$DEVKITPPC/bin:$PATH" && \
ls -l && \
cd /workdir && \
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
- name: Copy gamecube
run: |
mkdir -p build/gitea/Gamecube/Dusk