mirror of
https://github.com/debauchee/barrier.git
synced 2024-11-30 01:53:17 +03:00
9bccfb89cc
* Added Ubuntu Dockers for 16, 18, and 19 * Added Cirrus CI build task for gcloud instance with SSDs * Added macOS instance build with brew Qt install * Fixed Qt headers for 5.12.2 used in Ubuntu 19.04 * Consolidated version info into CMake file
12 lines
547 B
Bash
12 lines
547 B
Bash
cd ${CIRRUS_WORKING_DIR}
|
|
|
|
source ./build/version
|
|
|
|
SYNERGY_VERSION="$SYNERGY_VERSION_MAJOR.$SYNERGY_VERSION_MINOR.$SYNERGY_VERSION_PATCH"
|
|
SYNERGY_REVISION=`git rev-parse --short=8 HEAD`
|
|
SYNERGY_DEB_VERSION="${SYNERGY_VERSION}.${SYNERGY_VERSION_STAGE}~b${BUILD_NUMBER}+${SYNERGY_REVISION}"
|
|
|
|
dch --create --package "synergy" --controlmaint --distribution unstable --newversion $SYNERGY_DEB_VERSION "Initial release"
|
|
|
|
export DEB_BUILD_OPTIONS="parallel=4"
|
|
debuild --preserve-envvar SYNERGY_* --preserve-envvar GIT_COMMIT --preserve-envvar BUILD_NUMBER |