From b6188d54ee03befbc77a5dbd098af339d1d54e2b Mon Sep 17 00:00:00 2001 From: deed Date: Sun, 30 Jan 2022 15:36:09 +0100 Subject: [PATCH] =?UTF-8?q?ajout=20de=20la=20cr=C3=A9ation=20du=20docker?= =?UTF-8?q?=20pour=20compiler=20godot?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitlab-ci.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 84556dc..b94c8c3 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,6 +1,7 @@ stages: - build_3.3.4 - build_4 + - build_compil build-godot-export: stage: build_3.3.4 @@ -23,3 +24,14 @@ build-godot4-export: - docker tag khaganat/godot-export:4 khaganat/godot-export:4 - docker push khaganat/godot-export:4 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-export:4 khaganat/godot-compil:latest + - docker push khaganat/godot-compil:latest + when: manual