Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add psp compilers #5

Merged
merged 1 commit into from
Feb 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions platforms/psp/mwccpsp_3.0.1_121/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# NOTE: This file is generated automatically via template.py. Do not edit manually!


FROM alpine:3.18 as base

RUN mkdir -p /compilers/psp/mwccpsp_3.0.1_121

RUN wget -O mwccpsp_3.0.1_121.tar.gz "https://github.com/decompme/compilers/releases/download/compilers/mwccpsp_3.0.1_121.tar.gz"
RUN tar xvzf mwccpsp_3.0.1_121.tar.gz -C /compilers/psp/mwccpsp_3.0.1_121

RUN chown -R root:root /compilers/psp/mwccpsp_3.0.1_121/
RUN chmod +x /compilers/psp/mwccpsp_3.0.1_121/*


FROM scratch as release

COPY --from=base /compilers /compilers
17 changes: 17 additions & 0 deletions platforms/psp/mwccpsp_3.0.1_147/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# NOTE: This file is generated automatically via template.py. Do not edit manually!


FROM alpine:3.18 as base

RUN mkdir -p /compilers/psp/mwccpsp_3.0.1_147

RUN wget -O mwccpsp_3.0.1_147.tar.gz "https://github.com/decompme/compilers/releases/download/compilers/mwccpsp_3.0.1_147.tar.gz"
RUN tar xvzf mwccpsp_3.0.1_147.tar.gz -C /compilers/psp/mwccpsp_3.0.1_147

RUN chown -R root:root /compilers/psp/mwccpsp_3.0.1_147/
RUN chmod +x /compilers/psp/mwccpsp_3.0.1_147/*


FROM scratch as release

COPY --from=base /compilers /compilers
17 changes: 17 additions & 0 deletions platforms/psp/mwccpsp_3.0.1_151/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# NOTE: This file is generated automatically via template.py. Do not edit manually!


FROM alpine:3.18 as base

RUN mkdir -p /compilers/psp/mwccpsp_3.0.1_151

RUN wget -O mwccpsp_3.0.1_151.tar.gz "https://github.com/decompme/compilers/releases/download/compilers/mwccpsp_3.0.1_151.tar.gz"
RUN tar xvzf mwccpsp_3.0.1_151.tar.gz -C /compilers/psp/mwccpsp_3.0.1_151

RUN chown -R root:root /compilers/psp/mwccpsp_3.0.1_151/
RUN chmod +x /compilers/psp/mwccpsp_3.0.1_151/*


FROM scratch as release

COPY --from=base /compilers /compilers
17 changes: 17 additions & 0 deletions platforms/psp/pspsnc_1.2.7503.0/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# NOTE: This file is generated automatically via template.py. Do not edit manually!


FROM alpine:3.18 as base

RUN mkdir -p /compilers/psp/pspsnc_1.2.7503.0

RUN wget -O pspsnc_1.2.7503.0.tar.gz "https://github.com/decompme/compilers/releases/download/compilers/pspsnc_1.2.7503.0.tar.gz"
RUN tar xvzf pspsnc_1.2.7503.0.tar.gz -C /compilers/psp/pspsnc_1.2.7503.0

RUN chown -R root:root /compilers/psp/pspsnc_1.2.7503.0/
RUN chmod +x /compilers/psp/pspsnc_1.2.7503.0/*


FROM scratch as release

COPY --from=base /compilers /compilers
19 changes: 19 additions & 0 deletions values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -272,6 +272,25 @@ compilers:
template: common/xz
file: https://cdn.discordapp.com/attachments/1067192766918037536/1120445708516995118/ps2_compilers.tar.xz

# PSP
- id: mwccpsp_3.0.1_121
platform: psp
template: common/default
file: https://github.com/decompme/compilers/releases/download/compilers/mwccpsp_3.0.1_121.tar.gz
- id: mwccpsp_3.0.1_147
platform: psp
template: common/default
file: https://github.com/decompme/compilers/releases/download/compilers/mwccpsp_3.0.1_147.tar.gz
- id: mwccpsp_3.0.1_151
platform: psp
template: common/default
file: https://github.com/decompme/compilers/releases/download/compilers/mwccpsp_3.0.1_151.tar.gz

- id: pspsnc_1.2.7503.0
platform: psp
template: common/default
file: https://github.com/decompme/compilers/releases/download/compilers/pspsnc_1.2.7503.0.tar.gz

# MAXOSX
- id: gcc-5370
platform: macosx
Expand Down
Loading