runner-redot-4.3 (latest)

Published 2025-02-22 00:00:33 +00:00 by actions-deploy in actions/runner-images

Installation

docker pull git.euph.dev/actions/runner-redot-4.3:latest
sha256:b5bc1c79793909ce30fcfbaed942d13fd4baf58c3ef3f59c736b28c837750e48

Image layers

ADD alpine-minirootfs-3.20.6-x86_64.tar.gz / # buildkit
CMD ["/bin/sh"]
ENV LANG=C.UTF-8
RUN /bin/sh -c ALPINE_GLIBC_BASE_URL="https://github.com/sgerrand/alpine-pkg-glibc/releases/download" && ALPINE_GLIBC_PACKAGE_VERSION="2.34-r0" && ALPINE_GLIBC_BASE_PACKAGE_FILENAME="glibc-$ALPINE_GLIBC_PACKAGE_VERSION.apk" && ALPINE_GLIBC_BIN_PACKAGE_FILENAME="glibc-bin-$ALPINE_GLIBC_PACKAGE_VERSION.apk" && ALPINE_GLIBC_I18N_PACKAGE_FILENAME="glibc-i18n-$ALPINE_GLIBC_PACKAGE_VERSION.apk" && apk add --no-cache --virtual=.build-dependencies wget ca-certificates && echo "-----BEGIN PUBLIC KEY----- MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEApZ2u1KJKUu/fW4A25y9m y70AGEa/J3Wi5ibNVGNn1gT1r0VfgeWd0pUybS4UmcHdiNzxJPgoWQhV2SSW1JYu tOqKZF5QSN6X937PTUpNBjUvLtTQ1ve1fp39uf/lEXPpFpOPL88LKnDBgbh7wkCp m2KzLVGChf83MS0ShL6G9EQIAUxLm99VpgRjwqTQ/KfzGtpke1wqws4au0Ab4qPY KXvMLSPLUp7cfulWvhmZSegr5AdhNw5KNizPqCJT8ZrGvgHypXyiFvvAH5YRtSsc Zvo9GI2e2MaZyo9/lvb+LbLEJZKEQckqRj4P26gmASrZEPStwc+yqy1ShHLA0j6m 1QIDAQAB -----END PUBLIC KEY-----" | sed 's/ */\n/g' > "/etc/apk/keys/sgerrand.rsa.pub" && wget "$ALPINE_GLIBC_BASE_URL/$ALPINE_GLIBC_PACKAGE_VERSION/$ALPINE_GLIBC_BASE_PACKAGE_FILENAME" "$ALPINE_GLIBC_BASE_URL/$ALPINE_GLIBC_PACKAGE_VERSION/$ALPINE_GLIBC_BIN_PACKAGE_FILENAME" "$ALPINE_GLIBC_BASE_URL/$ALPINE_GLIBC_PACKAGE_VERSION/$ALPINE_GLIBC_I18N_PACKAGE_FILENAME" && mv /etc/nsswitch.conf /etc/nsswitch.conf.bak && apk add --no-cache --force-overwrite "$ALPINE_GLIBC_BASE_PACKAGE_FILENAME" "$ALPINE_GLIBC_BIN_PACKAGE_FILENAME" "$ALPINE_GLIBC_I18N_PACKAGE_FILENAME" && mv /etc/nsswitch.conf.bak /etc/nsswitch.conf && rm "/etc/apk/keys/sgerrand.rsa.pub" && (/usr/glibc-compat/bin/localedef --force --inputfile POSIX --charmap UTF-8 "$LANG" || true) && echo "export LANG=$LANG" > /etc/profile.d/locale.sh && apk del glibc-i18n && rm "/root/.wget-hsts" && apk del .build-dependencies && rm "$ALPINE_GLIBC_BASE_PACKAGE_FILENAME" "$ALPINE_GLIBC_BIN_PACKAGE_FILENAME" "$ALPINE_GLIBC_I18N_PACKAGE_FILENAME" # buildkit
RUN /bin/sh -c apk add --update --no-cache bash sudo ca-certificates openssl openssh-client git git-lfs wget curl tar zip unzip xz zstd jq nodejs npm python3 py3-pip parallel make just # buildkit
RUN /bin/sh -c adduser -D runner && echo "runner ALL=(ALL) NOPASSWD: ALL" > /etc/sudoers.d/runner && chmod 0440 /etc/sudoers.d/runner # buildkit
RUN /bin/sh -c chmod -R 777 /opt # buildkit
WORKDIR /home/runner
CMD ["/bin/bash"]
USER runner
ARG PACKAGE_VERSION=4.3
RUN |1 PACKAGE_VERSION=4.3 /bin/sh -c sudo apk add --no-cache scons pkgconf gcc g++ libx11-dev libxcursor-dev libxinerama-dev libxi-dev libxrandr-dev mesa-dev alsa-lib-dev pulseaudio-dev pipx # buildkit
RUN |1 PACKAGE_VERSION=4.3 /bin/sh -c pipx install "gdtoolkit==$PACKAGE_VERSION.*" # buildkit
ENV PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/home/runner/.local/bin
RUN |1 PACKAGE_VERSION=4.3 /bin/sh -c wget $( curl -s https://api.github.com/repos/Redot-Engine/redot-engine/releases/tags/redot-$PACKAGE_VERSION-stable | grep "browser_download_url.*Redot_v.*-stable_linux\.x86_64\.zip" | cut -d '"' -f 4 - | head -n 1 ) -O Redot.zip && sudo unzip Redot.zip && sudo mv ./Redot_v*-stable_linux.x86_64 /usr/local/bin/redot && rm Redot.zip # buildkit
RUN |1 PACKAGE_VERSION=4.3 /bin/sh -c mkdir -p /home/runner/.local/share/redot/export_templates/$PACKAGE_VERSION.stable # buildkit
COPY /templates/android_release.apk /home/runner/.local/share/redot/export_templates/4.3.stable/ # buildkit
COPY /templates/android_source.zip /home/runner/.local/share/redot/export_templates/4.3.stable/ # buildkit
COPY /templates/ios.zip /home/runner/.local/share/redot/export_templates/4.3.stable/ # buildkit
COPY /templates/linux_release.arm32 /home/runner/.local/share/redot/export_templates/4.3.stable/ # buildkit
COPY /templates/linux_release.arm64 /home/runner/.local/share/redot/export_templates/4.3.stable/ # buildkit
COPY /templates/linux_release.x86_32 /home/runner/.local/share/redot/export_templates/4.3.stable/ # buildkit
COPY /templates/linux_release.x86_64 /home/runner/.local/share/redot/export_templates/4.3.stable/ # buildkit
COPY /templates/macos.zip /home/runner/.local/share/redot/export_templates/4.3.stable/ # buildkit
COPY /templates/version.txt /home/runner/.local/share/redot/export_templates/4.3.stable/ # buildkit
COPY /templates/web_dlink_nothreads_release.zip /home/runner/.local/share/redot/export_templates/4.3.stable/ # buildkit
COPY /templates/web_dlink_release.zip /home/runner/.local/share/redot/export_templates/4.3.stable/ # buildkit
COPY /templates/web_nothreads_release.zip /home/runner/.local/share/redot/export_templates/4.3.stable/ # buildkit
COPY /templates/web_release.zip /home/runner/.local/share/redot/export_templates/4.3.stable/ # buildkit
COPY /templates/windows_release_arm64_console.exe /home/runner/.local/share/redot/export_templates/4.3.stable/ # buildkit
COPY /templates/windows_release_arm64.exe /home/runner/.local/share/redot/export_templates/4.3.stable/ # buildkit
COPY /templates/windows_release_x86_32_console.exe /home/runner/.local/share/redot/export_templates/4.3.stable/ # buildkit
COPY /templates/windows_release_x86_32.exe /home/runner/.local/share/redot/export_templates/4.3.stable/ # buildkit
COPY /templates/windows_release_x86_64_console.exe /home/runner/.local/share/redot/export_templates/4.3.stable/ # buildkit
COPY /templates/windows_release_x86_64.exe /home/runner/.local/share/redot/export_templates/4.3.stable/ # buildkit
Details
Container
2025-02-22 00:00:33 +00:00
21
OCI / Docker
linux/amd64
1.1 GiB
Versions (28) View all
1307 2025-02-22
latest 2025-02-22
1306 2025-02-21
1305 2025-02-20
1304 2025-02-19