Skip to content

Commit 97879bf

Browse files
authored
Add NGC ProDG compilers (#30)
1 parent 3bb640b commit 97879bf

File tree

3 files changed

+42
-0
lines changed

3 files changed

+42
-0
lines changed
+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
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+
RUN mkdir -p /compilers/gc_wii/prodg_35_b140
7+
8+
RUN wget -O prodg_35_b140.tar.gz "https://github.com/decompme/compilers/releases/download/compilers/prodg_35_b140.tar.gz"
9+
RUN tar xvzf prodg_35_b140.tar.gz -C /compilers/gc_wii/prodg_35_b140
10+
11+
RUN chown -R root:root /compilers/gc_wii/prodg_35_b140/
12+
RUN chmod +x /compilers/gc_wii/prodg_35_b140/*
13+
14+
15+
FROM scratch as release
16+
17+
COPY --from=base /compilers /compilers

platforms/gc_wii/prodg_381/Dockerfile

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
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+
RUN mkdir -p /compilers/gc_wii/prodg_381
7+
8+
RUN wget -O prodg_381.tar.gz "https://github.com/decompme/compilers/releases/download/compilers/prodg_381.tar.gz"
9+
RUN tar xvzf prodg_381.tar.gz -C /compilers/gc_wii/prodg_381
10+
11+
RUN chown -R root:root /compilers/gc_wii/prodg_381/
12+
RUN chmod +x /compilers/gc_wii/prodg_381/*
13+
14+
15+
FROM scratch as release
16+
17+
COPY --from=base /compilers /compilers

values.yaml

+8
Original file line numberDiff line numberDiff line change
@@ -872,10 +872,18 @@ compilers:
872872
platform: gc_wii
873873
template: common/default
874874
file: https://github.com/decompme/compilers/releases/download/compilers/prodg_35.tar.gz
875+
- id: prodg_35_b140
876+
platform: gc_wii
877+
template: common/default
878+
file: https://github.com/decompme/compilers/releases/download/compilers/prodg_35_b140.tar.gz
875879
- id: prodg_37
876880
platform: gc_wii
877881
template: common/default
878882
file: https://github.com/decompme/compilers/releases/download/compilers/prodg_37.tar.gz
883+
- id: prodg_381
884+
platform: gc_wii
885+
template: common/default
886+
file: https://github.com/decompme/compilers/releases/download/compilers/prodg_381.tar.gz
879887
- id: prodg_393
880888
platform: gc_wii
881889
template: common/default

0 commit comments

Comments
 (0)