2021-07-24 18:09:55 +02:00
|
|
|
---
|
2021-08-01 12:56:09 +02:00
|
|
|
# Windows Development version
|
2021-07-24 18:09:55 +02:00
|
|
|
|
|
|
|
|
kind: pipeline
|
|
|
|
|
type: docker
|
2021-08-01 12:56:09 +02:00
|
|
|
name: WindowsDebugVersion
|
2021-07-24 18:09:55 +02:00
|
|
|
|
|
|
|
|
platform:
|
|
|
|
|
os: linux
|
|
|
|
|
arch: amd64
|
|
|
|
|
|
|
|
|
|
clone:
|
|
|
|
|
depth: 1
|
|
|
|
|
|
|
|
|
|
steps:
|
2021-08-01 12:33:50 +02:00
|
|
|
- name: WindowsDebug
|
2021-07-24 18:09:55 +02:00
|
|
|
image: barichello/godot-ci:3.3.2
|
2021-08-01 12:33:50 +02:00
|
|
|
volumes:
|
|
|
|
|
- name: binary
|
2021-08-01 14:08:46 +02:00
|
|
|
path: releases/windows
|
2021-07-24 18:09:55 +02:00
|
|
|
commands:
|
2021-08-01 14:33:35 +02:00
|
|
|
- godot --export "WindowsDebug" "releases/windows/Puzzle Quest.exe"
|
2021-08-01 12:33:50 +02:00
|
|
|
- name: WindowsDeploy
|
|
|
|
|
image: barichello/godot-ci:3.3.2
|
|
|
|
|
volumes:
|
|
|
|
|
- name: binary
|
2021-08-01 14:08:46 +02:00
|
|
|
path: releases/windows
|
2021-08-01 13:00:11 +02:00
|
|
|
environment:
|
|
|
|
|
BUTLER_API_KEY:
|
|
|
|
|
from_secret: BUTLER_API_KEY
|
2021-08-01 13:23:39 +02:00
|
|
|
commands:
|
2021-08-01 14:36:16 +02:00
|
|
|
- butler push --ignore '.keep' "releases/windows" "dev-crea/ahog:windows"
|
2021-08-01 12:33:50 +02:00
|
|
|
|
2021-08-01 13:37:31 +02:00
|
|
|
trigger:
|
|
|
|
|
branch:
|
|
|
|
|
- dev
|
|
|
|
|
|
|
|
|
|
---
|
|
|
|
|
# Android Development version
|
|
|
|
|
|
|
|
|
|
kind: pipeline
|
|
|
|
|
type: docker
|
|
|
|
|
name: AndroidDebugVersion
|
|
|
|
|
|
|
|
|
|
platform:
|
|
|
|
|
os: linux
|
|
|
|
|
arch: amd64
|
|
|
|
|
|
|
|
|
|
clone:
|
|
|
|
|
depth: 1
|
|
|
|
|
|
|
|
|
|
steps:
|
|
|
|
|
- name: AndroidDebug
|
2021-08-01 13:58:17 +02:00
|
|
|
image: devcrea/godot-ci:3.3.2-android
|
2021-08-01 13:37:31 +02:00
|
|
|
volumes:
|
|
|
|
|
- name: binary
|
2021-08-01 14:08:46 +02:00
|
|
|
path: releases/android
|
2021-08-01 13:37:31 +02:00
|
|
|
commands:
|
|
|
|
|
- apt-get update
|
|
|
|
|
- apt-get install -y wget
|
|
|
|
|
- wget -O /root/debug.keystore https://u.pcloud.link/publink/show?code=XZD8dxXZSdXUyze6UHXxhssGJXHfUBI730Gk
|
|
|
|
|
- sed 's@keystore/debug=".*"@keystore/debug="'/root/debug.keystore'"@g' -i export_presets.cfg
|
2021-08-01 12:33:50 +02:00
|
|
|
# - sed 's@keystore/release_user=".*"@keystore/release_user="'$SECRET_RELEASE_KEYSTORE_USER'"@g' -i export_presets.cfg
|
|
|
|
|
# - sed 's@keystore/release_password=".*"@keystore/release_password="'$SECRET_RELEASE_KEYSTORE_PASSWORD'"@g' -i export_presets.cfg
|
2021-08-01 14:33:35 +02:00
|
|
|
- godot --export "AndroidDebug" "releases/android/Puzzle Quest.apk"
|
2021-08-01 13:37:31 +02:00
|
|
|
- name: AndroidDeploy
|
|
|
|
|
image: barichello/godot-ci:3.3.2
|
|
|
|
|
volumes:
|
|
|
|
|
- name: binary
|
2021-08-01 14:08:46 +02:00
|
|
|
path: releases/android
|
2021-08-01 13:37:31 +02:00
|
|
|
environment:
|
|
|
|
|
BUTLER_API_KEY:
|
|
|
|
|
from_secret: BUTLER_API_KEY
|
|
|
|
|
commands:
|
2021-08-01 14:36:16 +02:00
|
|
|
- butler push --ignore '.keep' "releases/android" "dev-crea/ahog:android"
|
2021-08-01 13:37:31 +02:00
|
|
|
|
|
|
|
|
trigger:
|
|
|
|
|
branch:
|
|
|
|
|
- dev
|
|
|
|
|
|
|
|
|
|
---
|
|
|
|
|
# Linux Development version
|
|
|
|
|
|
|
|
|
|
kind: pipeline
|
|
|
|
|
type: docker
|
|
|
|
|
name: LinuxDebugVersion
|
|
|
|
|
|
|
|
|
|
platform:
|
|
|
|
|
os: linux
|
|
|
|
|
arch: amd64
|
|
|
|
|
|
|
|
|
|
clone:
|
|
|
|
|
depth: 1
|
|
|
|
|
|
|
|
|
|
steps:
|
|
|
|
|
- name: LinuxDebug
|
|
|
|
|
image: barichello/godot-ci:3.3.2
|
|
|
|
|
volumes:
|
|
|
|
|
- name: binary
|
2021-08-01 14:08:46 +02:00
|
|
|
path: releases/linux
|
2021-08-01 13:37:31 +02:00
|
|
|
commands:
|
2021-08-01 14:33:35 +02:00
|
|
|
- godot --export "Linux/X11Debug" "releases/linux/Puzzle Quest.x86_64"
|
2021-08-01 13:37:31 +02:00
|
|
|
- name: LinuxDeploy
|
|
|
|
|
image: barichello/godot-ci:3.3.2
|
|
|
|
|
volumes:
|
|
|
|
|
- name: binary
|
2021-08-01 14:08:46 +02:00
|
|
|
path: releases/linux
|
2021-08-01 13:37:31 +02:00
|
|
|
environment:
|
|
|
|
|
BUTLER_API_KEY:
|
|
|
|
|
from_secret: BUTLER_API_KEY
|
|
|
|
|
commands:
|
2021-08-01 14:36:16 +02:00
|
|
|
- butler push --ignore '.keep' "releases/linux" "dev-crea/ahog:linux"
|
2021-07-31 18:26:36 +02:00
|
|
|
|
|
|
|
|
trigger:
|
|
|
|
|
branch:
|
|
|
|
|
- dev
|
2021-08-01 12:33:50 +02:00
|
|
|
|
|
|
|
|
---
|
|
|
|
|
# For Production version
|
|
|
|
|
|
|
|
|
|
kind: pipeline
|
|
|
|
|
type: docker
|
|
|
|
|
name: ReleaseVersion
|
|
|
|
|
|
|
|
|
|
platform:
|
|
|
|
|
os: linux
|
|
|
|
|
arch: amd64
|
|
|
|
|
|
|
|
|
|
clone:
|
|
|
|
|
depth: 1
|
|
|
|
|
|
|
|
|
|
trigger:
|
|
|
|
|
branch:
|
2021-07-31 18:26:36 +02:00
|
|
|
- master
|