-
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2859681
commit b39f7db
Showing
1 changed file
with
2 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,5 @@ | ||
FROM ghcr.io/wiiu-env/devkitppc:20231112 | ||
FROM ghcr.io/wiiu-env/devkitppc:20241128 | ||
|
||
COPY --from=ghcr.io/wiiu-env/libmocha:20231127 /artifacts $DEVKITPRO | ||
|
||
# Build latest wut | ||
RUN \ | ||
mkdir wut && \ | ||
cd wut && \ | ||
git init . && \ | ||
git remote add origin https://github.com/devkitPro/wut.git && \ | ||
git fetch --depth 1 origin 682f8eb48a79796e653eb711c001ba47355f351c && \ | ||
git checkout FETCH_HEAD | ||
WORKDIR /wut | ||
RUN make -j$(nproc) | ||
RUN make install | ||
COPY --from=ghcr.io/wiiu-env/libmocha:20240603 /artifacts $DEVKITPRO | ||
|
||
WORKDIR /project |