aio-builder/conf/aio-builder.cfg
2013-09-09 05:06:01 +02:00

129 lines
4.6 KiB
INI

###################################################
# aio-builder.cfg
# Default values for aio-builder system
####################################################
#
# Define your local, private, individual, not-project dependent build setup
# in the file ~/.aio-builder.cfg OR by using the environment variable AIO_BUILDER
# pointing the the configuration.
# export AIO_BUILDER=/home/dschwager/work/aio-builder.cfg
# If no files are availble, the default values will be use
# from <aio-builder-home>/conf/aio-builder.cfg
#
# cp <aio-builder-home>/conf/aio-builder.cfg $HOME/.aio-builder.cfg
# vi $HOME/.aio-builder.cfg
# may you will change some locations
###################################################
##################################
# Global variables
#################################
TMP_DIR=/tmp
# Setup debug level, be more verbose
# Optional parameter. Valid values: debug|info. Default: <empty>
DEBUG_LEVEL=
# STATUS - defines the stabability of the build
# Valid values:
# integration: this is used by a continuous integration server.
# NOTE: The 'RELEASE'-variable inside builder-project.cfg
# will be increased AUTOMATICALLY !!
# testing : it's in the testing/QM process
# release : passed the testing and go's to productive
STATUS="integration"
# STATUS_INTEGRATION_RELEASE - automatically created release number,
# if STATUS is set to "integration". Valid values: anything, default value: "`date +%Y%m%d%H%M`"
# Samples:
# "func:inc1" - build-in function "inc1": search the aio-repository for the latested release and increment 1
# "`date +%Y%m%d%H%M`" - command output, e.g. the date format YYMMDD-HHMM
# "$BUILD_NUMBER" - Environment variables, jenkins https://wiki.jenkins-ci.org/display/JENKINS/Building+a+software+project#Buildingasoftwareproject-JenkinsSetEnvironmentVariables
STATUS_INTEGRATION_RELEASE="func:inc1"
# CHECKSUM_AUTOCREATE - Every downloaded file is checked using SHA1 algorithm
# against a checksum file, if this file ist not available, it will be created
# on-the-fly, dependent on this setting.
# Valid values: true|false, Default: false
CHECKSUM_AUTOCREATE=false
###############################
# CREATOR
###############################
# Part of the published AIO-package name
# Limitation: max 3 chars (beause AIO limites REVISION to 16 chars)
CREATOR_TAG=xx
# Additonal information from the person creating the packages
CREATOR_NAME="Your name"
CREATOR_EMAIL="your-email@domain.de"
##################################
# AIO repository settings
#################################
# Basedirectory storing AIO-packages after building
AIO_REPOS_BASE_DIR=$HOME/aio-repository
# Directory- and filename pattern
AIO_REPOS_PRODUCT_DIR=${AIO_REPOS_BASE_DIR}/${STATUS}/${VENDOR}/${PN}/${VERSION}-${CREATOR_TAG}${RELEASE}
# AIO-package filepattern
AIO_REPOS_FILE_PATTERN=${PN}_${VERSION}-${CREATOR_TAG}${RELEASE}
# Force alway upload to aio repos
# Target: publish, Valid values: true|false, Default: false
# AIO_REPOS_FORCE_UPLOAD=true
# define the artifacts uploading to the repository (AIO_REPOS_FORCE_UPLOAD must be "true")
# AIO_REPOS_UPLOAD_SOURCE product directory
# AIO_REPOS_UPLOAD_AIO : aio package
# AIO_REPOS_UPLOAD_BIN : File used by aio package creation
# AIO_REPOS_UPLOAD_AIO : Additional files (*.md5)
AIO_REPOS_UPLOAD_AIO=true
AIO_REPOS_UPLOAD_AIO=false
AIO_REPOS_UPLOAD_SOURCE=false
AIO_REPOS_UPLOAD_BIN=false
##
# Limiting instances of published version
# Valid values: true|false
AIO_REPOS_PURGE=false
# Only purge projects using the defined STATUS
# ValidValues: integration|testing|release
# Defaut: integration
AIO_REPOS_PURGE_STATUS=integration
# defines the max. instances of published versions per product
# Valid values: 0...n, 0: disable autocleanup
AIO_REPOS_PURGE_LIMIT=3
# defines limits for special products
# Valid values: 0...n, 0: disable autocleanup
AIO_REPOS_PURGE_LIMIT_productname1=2
AIO_REPOS_PURGE_LIMIT_productname2=6
# create an gpg signfile
AIO_REPOS_UPLOAD_AIO_GPG=false
GPG_PASSPHRASE=""
###############################
# Distribution / Vendor settings
###############################
# Directory downloading/cacheing the artifacts like MSI package or icons from the vendor webside
DIST_CACHE_DIR=$HOME/.aio-dist-cache/${PN}-${VERSION}
# private dist repository. You can use all variables from release.cfg insde the URL
# this optinal URL will be the FIRST url to check for downloading vendor stuff.
# To copy a local file, the repos should start with file://
DIST_PRIVATE_REPOS=file://$HOME/aio-dist.private/$VENDOR/$PN/$VERSION
# Force always downloading dist files
# DIST_FORCE_DOWNLOAD=1