Large update with mostly rewritten character subsystem

This commit is contained in:
Segey Lapin
2019-10-17 08:48:21 +03:00
parent 6e18c898b4
commit 0945ef76ee
224 changed files with 77854 additions and 13113 deletions

9
Jenkinsfile vendored
View File

@@ -23,7 +23,8 @@ node('docker && ubuntu-16.04') {
if (params.DOWNLOAD_TEMPLATES) {
sh '''#!/bin/sh
rm -f godot-templates.tar.gz
wget -c https://github.com/slapin/godot-templates-build/releases/download/2019_31_0802_1959/godot-templates.tar.gz
curl -s https://api.github.com/repos/slapin/godot-templates-build/releases/latest|grep browser_download_url|cut -d : -f2-|cut -d '"' -f 2|wget -i -
# wget -c https://github.com/slapin/godot-templates-build/releases/download/2019_31_0802_1959/godot-templates.tar.gz
'''
}
sh '''#!/bin/sh
@@ -97,10 +98,16 @@ node('docker && ubuntu-16.04') {
ls -l
'''
}
stage("artifacts") {
archiveArtifacts artifacts: "proto2-html5.zip", onlyIfSuccessful: true
archiveArtifacts artifacts: "BallKickers-windows.zip", onlyIfSuccessful: true
archiveArtifacts artifacts: "BallKickers-linux.zip", onlyIfSuccessful: true
}
stage("itch.io") {
withCredentials([string(credentialsId: 'itchio_token', variable: 'itchio_token')]) {
withEnv(["BUTLER_API_KEY=$itchio_token"]) {
sh '''#!/bin/sh
exit 0
export PATH=$PATH:$(pwd)/butler
butler push proto2-html5.zip slapin/ball-kickers:html
H=$?