Add new CI linux 64
This commit is contained in:
parent
2a88506f85
commit
9744dd79c7
1 changed files with 26 additions and 0 deletions
26
.gitlab-ci.yml
Normal file
26
.gitlab-ci.yml
Normal file
|
@ -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
|
||||
|
Loading…
Reference in a new issue