Skip to content

Commit 00d1460

Browse files
authored
Merge pull request #36 from encounter/mwcc_233_159p1
Add gc_wii mwcc_233_159p1 (GC/1.1p1)
2 parents 5743b8f + 4f058c0 commit 00d1460

File tree

29 files changed

+93
-56
lines changed

29 files changed

+93
-56
lines changed

platforms/gc_wii/mwcc_233_144/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ FROM alpine:3.18 as base
77

88
WORKDIR /root
99

10-
RUN wget -O compilers_20240706.zip "https://files.decomp.dev/compilers_20240706.zip"
11-
RUN unzip compilers_20240706.zip
10+
RUN wget -O compilers_20250520.zip "https://files.decomp.dev/compilers_20250520.zip"
11+
RUN unzip compilers_20250520.zip
1212

1313
RUN mkdir -p /compilers/gc_wii/mwcc_233_144
1414

platforms/gc_wii/mwcc_233_159/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ FROM alpine:3.18 as base
77

88
WORKDIR /root
99

10-
RUN wget -O compilers_20240706.zip "https://files.decomp.dev/compilers_20240706.zip"
11-
RUN unzip compilers_20240706.zip
10+
RUN wget -O compilers_20250520.zip "https://files.decomp.dev/compilers_20250520.zip"
11+
RUN unzip compilers_20250520.zip
1212

1313
RUN mkdir -p /compilers/gc_wii/mwcc_233_159
1414

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# NOTE: This file is generated automatically via template.py. Do not edit manually!
2+
3+
4+
FROM alpine:3.18 as base
5+
6+
# download zip first to allow for Docker caching
7+
8+
WORKDIR /root
9+
10+
RUN wget -O compilers_20250520.zip "https://files.decomp.dev/compilers_20250520.zip"
11+
RUN unzip compilers_20250520.zip
12+
13+
RUN mkdir -p /compilers/gc_wii/mwcc_233_159p1
14+
15+
RUN cp -r GC/1.1p1/* /compilers/gc_wii/mwcc_233_159p1
16+
17+
RUN chmod +x /compilers/gc_wii/mwcc_233_159p1/mwcceppc.exe
18+
RUN touch /compilers/gc_wii/mwcc_233_159p1/license.dat
19+
RUN if [[ -f /compilers/gc_wii/mwcc_233_159p1/lmgr326b.dll ]]; then \
20+
mv /compilers/gc_wii/mwcc_233_159p1/lmgr326b.dll /compilers/gc_wii/mwcc_233_159p1/LMGR326B.dll; \
21+
fi
22+
RUN if [[ -f /compilers/gc_wii/mwcc_233_159p1/lmgr8c.dll ]]; then \
23+
mv /compilers/gc_wii/mwcc_233_159p1/lmgr8c.dll /compilers/gc_wii/mwcc_233_159p1/LMGR8C.dll; \
24+
fi
25+
26+
RUN chown -R root:root /compilers/gc_wii/mwcc_233_159p1/
27+
28+
29+
FROM scratch as release
30+
31+
COPY --from=base /compilers /compilers

platforms/gc_wii/mwcc_233_163/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ FROM alpine:3.18 as base
77

88
WORKDIR /root
99

10-
RUN wget -O compilers_20240706.zip "https://files.decomp.dev/compilers_20240706.zip"
11-
RUN unzip compilers_20240706.zip
10+
RUN wget -O compilers_20250520.zip "https://files.decomp.dev/compilers_20250520.zip"
11+
RUN unzip compilers_20250520.zip
1212

1313
RUN mkdir -p /compilers/gc_wii/mwcc_233_163
1414

platforms/gc_wii/mwcc_233_163n/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ FROM alpine:3.18 as base
77

88
WORKDIR /root
99

10-
RUN wget -O compilers_20240706.zip "https://files.decomp.dev/compilers_20240706.zip"
11-
RUN unzip compilers_20240706.zip
10+
RUN wget -O compilers_20250520.zip "https://files.decomp.dev/compilers_20250520.zip"
11+
RUN unzip compilers_20250520.zip
1212

1313
RUN mkdir -p /compilers/gc_wii/mwcc_233_163n
1414

platforms/gc_wii/mwcc_242_53/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ FROM alpine:3.18 as base
77

88
WORKDIR /root
99

10-
RUN wget -O compilers_20240706.zip "https://files.decomp.dev/compilers_20240706.zip"
11-
RUN unzip compilers_20240706.zip
10+
RUN wget -O compilers_20250520.zip "https://files.decomp.dev/compilers_20250520.zip"
11+
RUN unzip compilers_20250520.zip
1212

1313
RUN mkdir -p /compilers/gc_wii/mwcc_242_53
1414

platforms/gc_wii/mwcc_242_81/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ FROM alpine:3.18 as base
77

88
WORKDIR /root
99

10-
RUN wget -O compilers_20240706.zip "https://files.decomp.dev/compilers_20240706.zip"
11-
RUN unzip compilers_20240706.zip
10+
RUN wget -O compilers_20250520.zip "https://files.decomp.dev/compilers_20250520.zip"
11+
RUN unzip compilers_20250520.zip
1212

1313
RUN mkdir -p /compilers/gc_wii/mwcc_242_81
1414

platforms/gc_wii/mwcc_242_81r/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ FROM alpine:3.18 as base
77

88
WORKDIR /root
99

10-
RUN wget -O compilers_20240706.zip "https://files.decomp.dev/compilers_20240706.zip"
11-
RUN unzip compilers_20240706.zip
10+
RUN wget -O compilers_20250520.zip "https://files.decomp.dev/compilers_20250520.zip"
11+
RUN unzip compilers_20250520.zip
1212

1313
RUN mkdir -p /compilers/gc_wii/mwcc_242_81r
1414

platforms/gc_wii/mwcc_247_105/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ FROM alpine:3.18 as base
77

88
WORKDIR /root
99

10-
RUN wget -O compilers_20240706.zip "https://files.decomp.dev/compilers_20240706.zip"
11-
RUN unzip compilers_20240706.zip
10+
RUN wget -O compilers_20250520.zip "https://files.decomp.dev/compilers_20250520.zip"
11+
RUN unzip compilers_20250520.zip
1212

1313
RUN mkdir -p /compilers/gc_wii/mwcc_247_105
1414

platforms/gc_wii/mwcc_247_107/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ FROM alpine:3.18 as base
77

88
WORKDIR /root
99

10-
RUN wget -O compilers_20240706.zip "https://files.decomp.dev/compilers_20240706.zip"
11-
RUN unzip compilers_20240706.zip
10+
RUN wget -O compilers_20250520.zip "https://files.decomp.dev/compilers_20250520.zip"
11+
RUN unzip compilers_20250520.zip
1212

1313
RUN mkdir -p /compilers/gc_wii/mwcc_247_107
1414

0 commit comments

Comments
 (0)