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/gba/agbcc-fe8j/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/gba/agbcc-fe8j

RUN wget -O agbcc.tar.gz "https://github.com/laqieer/agbcc/releases/download/fe8j-v1/agbcc.tar.gz"
RUN tar xvzf agbcc.tar.gz -C /compilers/gba/agbcc-fe8j

RUN chown -R root:root /compilers/gba/agbcc-fe8j/
RUN chmod +x /compilers/gba/agbcc-fe8j/*


FROM scratch AS release

COPY --from=base /compilers /compilers
4 changes: 4 additions & 0 deletions values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -561,6 +561,10 @@ compilers:
platform: gba
template: common/default
file: https://github.com/pret/agbcc/releases/download/release/agbcc.tar.gz
- id: agbcc-fe8j
platform: gba
template: common/default
file: https://github.com/laqieer/agbcc/releases/download/fe8j-v1/agbcc.tar.gz
- id: agbccpp
platform: gba
template: common/default
Expand Down