Compare commits
52 commits
main
...
4-creer-un
Author | SHA1 | Date | |
---|---|---|---|
|
55c783418e | ||
9d975c5e72 | |||
c58cd3be8f | |||
|
4de5559861 | ||
|
ac415aa660 | ||
|
b9934ff664 | ||
|
275a05216b | ||
|
9cd5c3e8df | ||
|
7fec34be20 | ||
|
00b72af7f9 | ||
|
15d3765387 | ||
|
c5d64b5773 | ||
|
47cb36aaf4 | ||
|
389057c434 | ||
|
a66927b670 | ||
|
302d58efd8 | ||
|
030e059ab8 | ||
|
cc48d607bb | ||
|
a43e824b89 | ||
|
f16055240a | ||
|
42e2343951 | ||
|
be0642202e | ||
|
0cac99dd5f | ||
|
ab6d2bb221 | ||
|
0c8a3df047 | ||
|
26d46f7ab6 | ||
|
1619e5f55d | ||
|
4466f2b916 | ||
|
2600d2c53a | ||
|
d4a2cf3289 | ||
|
b6188d54ee | ||
|
b4edb4d9df | ||
|
b879306bdf | ||
|
337e5a1e5c | ||
|
afd5b4ed61 | ||
|
50170fefb9 | ||
|
1b37005e4f | ||
|
2ab8dc54e7 | ||
|
a33ee845cb | ||
|
82b5cb1d78 | ||
|
d19409115c | ||
|
be15eed375 | ||
|
6a5c80132b | ||
|
ace142b70b | ||
|
f2d1634edc | ||
|
f66d676efe | ||
|
7c9c38e442 | ||
|
5a6c308331 | ||
|
838ae89d83 | ||
|
a95f37533b | ||
|
ebce9a61b1 | ||
|
b02749970c |
8 changed files with 185 additions and 0 deletions
49
.gitlab-ci.yml
Normal file
49
.gitlab-ci.yml
Normal file
|
@ -0,0 +1,49 @@
|
||||||
|
stages:
|
||||||
|
- build_3.3.4
|
||||||
|
- build_4
|
||||||
|
- build_4.2beta
|
||||||
|
- build_compil
|
||||||
|
|
||||||
|
build-godot-export:
|
||||||
|
stage: build_3.3.4
|
||||||
|
tags:
|
||||||
|
- shell
|
||||||
|
script:
|
||||||
|
- cd godot
|
||||||
|
- docker build -t khaganat/godot-export:3.3.4 .
|
||||||
|
- docker tag khaganat/godot-export:3.3.4 khaganat/godot-export:3.3.4
|
||||||
|
- docker push khaganat/godot-export:3.3.4
|
||||||
|
when: manual
|
||||||
|
|
||||||
|
build-godot4-export:
|
||||||
|
stage: build_4
|
||||||
|
tags:
|
||||||
|
- shell
|
||||||
|
script:
|
||||||
|
- cd godot4
|
||||||
|
- docker build -t khaganat/godot-export:4 .
|
||||||
|
- docker tag khaganat/godot-export:4 khaganat/godot-export:4
|
||||||
|
- docker push khaganat/godot-export:4
|
||||||
|
when: manual
|
||||||
|
|
||||||
|
build-godot4dev-export:
|
||||||
|
stage: build_4.2beta
|
||||||
|
tags:
|
||||||
|
- shell
|
||||||
|
script:
|
||||||
|
- cd godot4.2
|
||||||
|
- docker build -t khaganat/godot-export:4.2beta .
|
||||||
|
- docker tag khaganat/godot-export:4.2beta khaganat/godot-export:4.2beta
|
||||||
|
- docker push khaganat/godot-export:4.2beta
|
||||||
|
when: manual
|
||||||
|
|
||||||
|
build-godot-compil:
|
||||||
|
stage: build_compil
|
||||||
|
tags:
|
||||||
|
- shell
|
||||||
|
script:
|
||||||
|
- cd godot4-compil
|
||||||
|
- docker build -t khaganat/godot-compil:latest .
|
||||||
|
- docker tag khaganat/godot-compil:latest khaganat/godot-compil:latest
|
||||||
|
- docker push khaganat/godot-compil:latest
|
||||||
|
when: manual
|
31
godot/Dockerfile
Normal file
31
godot/Dockerfile
Normal file
|
@ -0,0 +1,31 @@
|
||||||
|
FROM debian:buster
|
||||||
|
LABEL version="1.0" maintainer="Khaganat <contact@khaganat.net>"
|
||||||
|
|
||||||
|
USER root
|
||||||
|
ENV DEBIAN_FRONTEND=noninteractive
|
||||||
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
||||||
|
apt-utils \
|
||||||
|
ca-certificates \
|
||||||
|
git \
|
||||||
|
git-lfs \
|
||||||
|
python \
|
||||||
|
python-openssl \
|
||||||
|
unzip \
|
||||||
|
wget \
|
||||||
|
zip \
|
||||||
|
&& rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
|
|
||||||
|
ENV GODOT_VERSION "3.3.4"
|
||||||
|
|
||||||
|
RUN wget https://downloads.tuxfamily.org/godotengine/${GODOT_VERSION}/Godot_v${GODOT_VERSION}-stable_linux_headless.64.zip \
|
||||||
|
&& wget https://downloads.tuxfamily.org/godotengine/${GODOT_VERSION}/Godot_v${GODOT_VERSION}-stable_export_templates.tpz \
|
||||||
|
&& mkdir ~/.cache \
|
||||||
|
&& mkdir -p ~/.config/godot \
|
||||||
|
&& mkdir -p ~/.local/share/godot/templates/${GODOT_VERSION}.stable \
|
||||||
|
&& unzip Godot_v${GODOT_VERSION}-stable_linux_headless.64.zip \
|
||||||
|
&& mv Godot_v${GODOT_VERSION}-stable_linux_headless.64 /usr/local/bin/godot \
|
||||||
|
&& unzip Godot_v${GODOT_VERSION}-stable_export_templates.tpz \
|
||||||
|
&& mv templates/* ~/.local/share/godot/templates/${GODOT_VERSION}.stable \
|
||||||
|
&& rm -f Godot_v${GODOT_VERSION}-stable_export_templates.tpz Godot_v${GODOT_VERSION}-stable_linux_headless.64.zip
|
||||||
|
|
0
godot4-compil/.gitkeep
Normal file
0
godot4-compil/.gitkeep
Normal file
31
godot4-compil/Dockerfile
Normal file
31
godot4-compil/Dockerfile
Normal file
|
@ -0,0 +1,31 @@
|
||||||
|
FROM debian:bookworm
|
||||||
|
LABEL version="1.0" maintainer="Khaganat <contact@khaganat.net>"
|
||||||
|
|
||||||
|
USER root
|
||||||
|
ENV DEBIAN_FRONTEND=noninteractive
|
||||||
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
||||||
|
apt-utils \
|
||||||
|
ca-certificates \
|
||||||
|
build-essential \
|
||||||
|
git \
|
||||||
|
git-lfs \
|
||||||
|
python3 \
|
||||||
|
python3-openssl \
|
||||||
|
unzip \
|
||||||
|
wget \
|
||||||
|
zip \
|
||||||
|
scons \
|
||||||
|
pkg-config \
|
||||||
|
libx11-dev \
|
||||||
|
libxcursor-dev \
|
||||||
|
libxinerama-dev \
|
||||||
|
libgl1-mesa-dev \
|
||||||
|
libglu-dev \
|
||||||
|
libasound2-dev \
|
||||||
|
libpulse-dev \
|
||||||
|
libudev-dev \
|
||||||
|
libxi-dev \
|
||||||
|
libxrandr-dev \
|
||||||
|
libfontconfig-dev \
|
||||||
|
&& rm -rf /var/lib/apt/lists/*
|
||||||
|
|
0
godot4.2/.gitkeep
Normal file
0
godot4.2/.gitkeep
Normal file
44
godot4.2/Dockerfile
Normal file
44
godot4.2/Dockerfile
Normal file
|
@ -0,0 +1,44 @@
|
||||||
|
FROM debian:bookworm
|
||||||
|
LABEL version="1.1" maintainer="Khaganat <contact@khaganat.net>"
|
||||||
|
|
||||||
|
USER root
|
||||||
|
ENV DEBIAN_FRONTEND=noninteractive
|
||||||
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
||||||
|
ca-certificates \
|
||||||
|
git \
|
||||||
|
git-lfs \
|
||||||
|
python3 \
|
||||||
|
python3-openssl \
|
||||||
|
unzip \
|
||||||
|
wget \
|
||||||
|
zip \
|
||||||
|
rsync \
|
||||||
|
build-essential \
|
||||||
|
scons \
|
||||||
|
pkg-config \
|
||||||
|
libx11-dev \
|
||||||
|
libxcursor-dev \
|
||||||
|
libxinerama-dev \
|
||||||
|
libgl1-mesa-dev \
|
||||||
|
libglu-dev \
|
||||||
|
libasound2-dev \
|
||||||
|
libpulse-dev \
|
||||||
|
libudev-dev \
|
||||||
|
libxi-dev \
|
||||||
|
libxrandr-dev \
|
||||||
|
mesa-vulkan-drivers \
|
||||||
|
libfontconfig1-dev \
|
||||||
|
&& rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
|
ENV GODOT_VERSION="4.2-beta3"
|
||||||
|
|
||||||
|
RUN wget https://github.com/godotengine/godot-builds/releases/download/${GODOT_VERSION}/Godot_v${GODOT_VERSION}_linux.x86_64.zip \
|
||||||
|
&& wget https://github.com/godotengine/godot-builds/releases/download/${GODOT_VERSION}/Godot_v${GODOT_VERSION}_export_templates.tpz \
|
||||||
|
&& mkdir -p ~/.cache \
|
||||||
|
&& mkdir -p ~/.config/godot \
|
||||||
|
&& mkdir -p ~/.local/share/godot/export_templates/4.2.beta3 \
|
||||||
|
&& unzip Godot_v${GODOT_VERSION}_linux.x86_64.zip \
|
||||||
|
&& mv Godot_v${GODOT_VERSION}_linux.x86_64 /usr/local/bin/godot \
|
||||||
|
&& unzip Godot_v${GODOT_VERSION}_export_templates.tpz \
|
||||||
|
&& mv templates/* ~/.local/share/godot/export_templates/4.2.beta3 \
|
||||||
|
&& rm -f Godot_v${GODOT_VERSION}_linux.x86_64.zip Godot_v${GODOT_VERSION}_export_templates.tpz
|
0
godot4/.gitkeep
Normal file
0
godot4/.gitkeep
Normal file
30
godot4/Dockerfile
Normal file
30
godot4/Dockerfile
Normal file
|
@ -0,0 +1,30 @@
|
||||||
|
FROM debian:buster
|
||||||
|
LABEL version="1.0" maintainer="Khaganat <contact@khaganat.net>"
|
||||||
|
|
||||||
|
USER root
|
||||||
|
ENV DEBIAN_FRONTEND=noninteractive
|
||||||
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
||||||
|
apt-utils \
|
||||||
|
ca-certificates \
|
||||||
|
git \
|
||||||
|
git-lfs \
|
||||||
|
python \
|
||||||
|
python-openssl \
|
||||||
|
unzip \
|
||||||
|
wget \
|
||||||
|
zip \
|
||||||
|
&& rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
|
ENV GODOT_VERSION "4.0-alfa1"
|
||||||
|
|
||||||
|
RUN wget https://downloads.tuxfamily.org/godotengine/${GODOT_VERSION}/Godot_v${GODOT_VERSION}-stable_linux_headless.64.zip \
|
||||||
|
&& wget https://downloads.tuxfamily.org/godotengine/4.0/alpha1/Godot_v4.0-alpha1_export_templates.tpz \
|
||||||
|
&& mkdir ~/.cache \
|
||||||
|
&& mkdir -p ~/.config/godot \
|
||||||
|
&& mkdir -p ~/.local/share/godot/templates/${GODOT_VERSION}.stable \
|
||||||
|
&& unzip Godot_v${GODOT_VERSION}-stable_linux_headless.64.zip \
|
||||||
|
&& mv Godot_v${GODOT_VERSION}-stable_linux_headless.64 /usr/local/bin/godot \
|
||||||
|
&& unzip Godot_v${GODOT_VERSION}-stable_export_templates.tpz \
|
||||||
|
&& mv templates/* ~/.local/share/godot/templates/${GODOT_VERSION}.stable \
|
||||||
|
&& rm -f Godot_v${GODOT_VERSION}-stable_export_templates.tpz Godot_v${GODOT_VERSION}-stable_linux_headless.64.zip
|
||||||
|
|
Loading…
Reference in a new issue