diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index dd1aa17..84a0fb4 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,7 +1,7 @@ image: barichello/godot-ci:3.0.2 variables: - EXPORT_NAME: gamine-$CI_COMMIT_TAG + EXPORT_NAME: gamine stages: - export @@ -17,7 +17,7 @@ before_script: linux: stage: export script: - - godot -v --export "Linux/X11" ./build/linux/$EXPORT_NAME.x64 + - godot -v --export "Linux/X11" ./build/linux/$EXPORT_NAME.x86_64 artifacts: name: $EXPORT_NAME-$CI_JOB_NAME paths: diff --git a/Dockerfile b/Dockerfile index ea2a74f..a5d07e2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,15 +11,15 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ zip \ && 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 \ && mkdir ~/.cache \ && mkdir -p ~/.config/godot \ && mkdir -p ~/.local/share/godot/templates/${GODOT_VERSION}.stable \ - && unzip Godot_v${GODOT_VERSION}-stable_linux_server.64.zip \ - && mv Godot_v${GODOT_VERSION}-stable_linux_server.64 /usr/local/bin/godot \ + && 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_server.64.zip + && rm -f Godot_v${GODOT_VERSION}-stable_export_templates.tpz Godot_v${GODOT_VERSION}-stable_linux_headless.64.zip