Skip to content
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/n64/ido4.1/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

Check warning on line 4 in platforms/n64/ido4.1/Dockerfile

View workflow job for this annotation

GitHub Actions / Run Matrix (n64, ido4.1, ido4.1, platforms/n64/ido4.1/Dockerfile, n64/ido4.1)

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/

RUN mkdir -p /compilers/n64/ido4.1

RUN wget -O ido4.1.tar.xz "https://github.com/LLONSIT/qemu-irix-helpers/raw/refs/heads/n/qemu/ido4.1.tar.xz"
RUN tar xvJf ido4.1.tar.xz -C /compilers/n64/ido4.1

RUN chown -R root:root /compilers/n64/ido4.1/
RUN chmod +x /compilers/n64/ido4.1/*


FROM scratch as release

Check warning on line 15 in platforms/n64/ido4.1/Dockerfile

View workflow job for this annotation

GitHub Actions / Run Matrix (n64, ido4.1, ido4.1, platforms/n64/ido4.1/Dockerfile, n64/ido4.1)

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/

COPY --from=base /compilers /compilers
5 changes: 5 additions & 0 deletions values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,11 @@ compilers:
- https://github.com/decompme/compilers/releases/download/compilers/psyq-obj-parser.tar.gz
- https://github.com/RocketRet/modern-asn64/releases/download/main-release/modern-asn64.py

- id: ido4.1
platform: n64
template: common/default
file: https://github.com/LLONSIT/qemu-irix-helpers/raw/refs/heads/n/qemu/ido4.1.tar.xz

- id: ido5.3
platform: n64
template: common/default
Expand Down