mirror of
https://github.com/Insality/druid.git
synced 2025-06-27 02:17:52 +02:00
18 lines
613 B
Bash
18 lines
613 B
Bash
#!/bin/bash
|
|
|
|
# If true, it will check and download latest bob version. It will ignore bob_sha param
|
|
use_latest_bob=false
|
|
|
|
# Set patch (last value after dot) game version value as total git commits count (1.2.0 -> 1.2.{commits_count})
|
|
# You allow to get SHA commit from version via: git rev-list --all --reverse | sed -n {N}p
|
|
enable_incremental_version=true
|
|
|
|
# You can point bob version for project in format "filename:sha"
|
|
bob_sha="1.4.7:7a608d3ce6ed895d484956c1e76110ed8b78422a"
|
|
|
|
# Select Defold channel. Values: stable, beta, alpha
|
|
bob_channel="stable"
|
|
|
|
# Is need to build html report
|
|
is_build_html_report=true
|