Release 3.1
This commit is contained in:
@@ -1,7 +1,7 @@
|
|||||||
image: barichello/godot-ci:3.0.2
|
image: barichello/godot-ci:3.0.2
|
||||||
|
|
||||||
variables:
|
variables:
|
||||||
EXPORT_NAME: gamine-$CI_COMMIT_TAG
|
EXPORT_NAME: gamine
|
||||||
|
|
||||||
stages:
|
stages:
|
||||||
- export
|
- export
|
||||||
@@ -17,7 +17,7 @@ before_script:
|
|||||||
linux:
|
linux:
|
||||||
stage: export
|
stage: export
|
||||||
script:
|
script:
|
||||||
- godot -v --export "Linux/X11" ./build/linux/$EXPORT_NAME.x64
|
- godot -v --export "Linux/X11" ./build/linux/$EXPORT_NAME.x86_64
|
||||||
artifacts:
|
artifacts:
|
||||||
name: $EXPORT_NAME-$CI_JOB_NAME
|
name: $EXPORT_NAME-$CI_JOB_NAME
|
||||||
paths:
|
paths:
|
||||||
|
|||||||
10
Dockerfile
10
Dockerfile
@@ -11,15 +11,15 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
|
|||||||
zip \
|
zip \
|
||||||
&& rm -rf /var/lib/apt/lists/*
|
&& rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
ENV GODOT_VERSION "3.0.2"
|
ENV GODOT_VERSION "3.1"
|
||||||
|
|
||||||
RUN wget https://downloads.tuxfamily.org/godotengine/${GODOT_VERSION}/Godot_v${GODOT_VERSION}-stable_linux_server.64.zip \
|
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 \
|
&& wget https://downloads.tuxfamily.org/godotengine/${GODOT_VERSION}/Godot_v${GODOT_VERSION}-stable_export_templates.tpz \
|
||||||
&& mkdir ~/.cache \
|
&& mkdir ~/.cache \
|
||||||
&& mkdir -p ~/.config/godot \
|
&& mkdir -p ~/.config/godot \
|
||||||
&& mkdir -p ~/.local/share/godot/templates/${GODOT_VERSION}.stable \
|
&& mkdir -p ~/.local/share/godot/templates/${GODOT_VERSION}.stable \
|
||||||
&& unzip Godot_v${GODOT_VERSION}-stable_linux_server.64.zip \
|
&& unzip Godot_v${GODOT_VERSION}-stable_linux_headless.64.zip \
|
||||||
&& mv Godot_v${GODOT_VERSION}-stable_linux_server.64 /usr/local/bin/godot \
|
&& mv Godot_v${GODOT_VERSION}-stable_linux_headless.64 /usr/local/bin/godot \
|
||||||
&& unzip Godot_v${GODOT_VERSION}-stable_export_templates.tpz \
|
&& unzip Godot_v${GODOT_VERSION}-stable_export_templates.tpz \
|
||||||
&& mv templates/* ~/.local/share/godot/templates/${GODOT_VERSION}.stable \
|
&& 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_server.64.zip
|
&& rm -f Godot_v${GODOT_VERSION}-stable_export_templates.tpz Godot_v${GODOT_VERSION}-stable_linux_headless.64.zip
|
||||||
|
|||||||
Reference in New Issue
Block a user