Speedup build
All checks were successful
Build Dusk / run-tests (push) Successful in 1m10s
Build Dusk / build-linux (push) Successful in 1m4s
Build Dusk / build-psp (push) Successful in 1m36s
Build Dusk / build-dolphin (push) Successful in 2m6s

This commit is contained in:
2026-02-06 16:50:50 -06:00
parent efaa3f6eea
commit cbe51cc8d0
7 changed files with 19 additions and 8 deletions

View File

@@ -8,6 +8,6 @@ docker run -it -v ./:/workdir myapp:latest /bin/bash -c ' \
# 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 && \
make -j$(nproc) VERBOSE=1 && \
cp ./Dusk.dol ./boot.dol
'

View File

@@ -7,7 +7,7 @@ docker run -v ./:/workdir myapp:latest /bin/bash -c ' \
mkdir -p build-wii && \
cmake -S. -Bbuild-wii -DDUSK_TARGET_SYSTEM=wii -DCMAKE_TOOLCHAIN_FILE="$DEVKITPRO/cmake/Wii.cmake" && \
cd build-wii && \
make VERBOSE=1 && \
make -j$(nproc) VERBOSE=1 && \
mv ./Dusk.dol ./boot.dol
'
# docker run -it -v ./:/workdir myapp:latest /bin/bash

5
.ci/psp/build-psp.sh Executable file
View File

@@ -0,0 +1,5 @@
#!/bin/bash
mkdir -p build-psp
cd build-psp
cmake .. -DDUSK_TARGET_SYSTEM=psp
make -j$(nproc)