From 7e6149b7a2f303fc253e086087b791225c0b1b2a Mon Sep 17 00:00:00 2001 From: Segey Lapin Date: Thu, 18 Jul 2019 04:38:40 +0300 Subject: [PATCH] Fixed export issues, added HTML5 --- Jenkinsfile | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 3e16ad3..eccf00d 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -36,7 +36,20 @@ node('docker && ubuntu-16.04') { } stage("export-linux") { sh '''#!/bin/sh - strace -e open ./godot-templates/godot_server.x11.tools.64 --path $(pwd)/proto1 --export "linux" $(pwd)/proto1-linux + base=$(pwd) + cd proto1 + ${base}/godot-templates/godot_server.x11.tools.64 --export "linux" ${base}/proto1-linux + cd .. + ls -l + ''' + } + stage("export-html5") { + sh '''#!/bin/sh + base=$(pwd) + cd proto1 + ${base}/godot-templates/godot_server.x11.tools.64 --export "HTML5" ${base}/proto1-html5 + cd .. + ls -l ''' } }