From 9744dd79c7e6759df569251bed4b0a644b599660 Mon Sep 17 00:00:00 2001 From: deed Date: Tue, 28 Sep 2021 08:30:28 +0000 Subject: [PATCH] Add new CI linux 64 --- .gitlab-ci.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..6696060 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,26 @@ +stages: +- build + +Khanat client linux 64: + stage: build + tags: + - Docker + image: debian:latest + script: + - apt-get update + - apt-get -y upgrade + - apt-get install --no-install-recommends -y 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 yasm wget unzip + + - wget -q https://downloads.tuxfamily.org/godotengine/3.3.3/Godot_v3.3.3-stable_linux_server.64.zip + - wget -q https://downloads.tuxfamily.org/godotengine/3.3.3/Godot_v3.3.3-stable_export_templates.tpz + - unzip Godot_v3.3.3-stable_linux_headless.64.zip + - unzip Godot_v3.3.3-stable_export_templates.tpz + - mkdir -p ~/bin ~/.cache ~/.config/godot ~/.local/share/godot/templates/$3.3.3.stable + - mv templates/* ~/.local/share/godot/templates/3.3.3.stable + - ./Godot_v3.3.3-stable_linux_headless.64 -v --export "Linux/X11" + + artifacts: + name: "khanat-$(echo $CI_BUILD_REF | head -c 7 )-$CI_PIPELINE_ID-client-linux-64" + paths: + when: manual +