-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathconfig.sh.blank
31 lines (27 loc) · 1.35 KB
/
config.sh.blank
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# PROXY=http://1.2.3.4:1234 # if you are behind a proxy
# CHROOTER_BUILD_OPTIONS="--build-arg=http_proxy=$PROXY --build-arg=https_proxy=$PROXY"
# CHROOTER_RUN_OPTIONS="-e http_proxy=$PROXY -e https_proxy=$PROXY"
chrooter() { # configure chrooter command
# export CHROOTER_PREFIX="/tmp" # where to mount a virtual environment
# if you will build os images from scratch you need 10Gb of free space
$BASE_DIR/chrooter/chrooter.sh $@ # chrooter is required, it is to commnads in virtual environment
}
# gen_name_template() { # here you may override a naming rules for out packages
# local NAME="$1" # see build-*.sh, publish/publish.sh
# local TAG="$2"
# local PLATFORM="$3"
# local ARCH="$4"
# local SUFFIX="$4"
#
# if [ ! -z "$TAG" ]; then
# TAG="-$TAG"
# fi
#
# echo "$NAME-%VERSION%-${ARCH}bit-$PLATFORM$TAG-%DATE%-%COMMIT%$SUFFIX"
# }
# OPENTOONZ_TESTING_TAG="test" # uses in build-opentoonz-testing.sh for naming out packages
# SYNFIGSTUDIO_TESTING_TAG="test" # uses in build-synfigstudio.sh for naming out packages
#export EMAIL_FAILED="[email protected]"
#export EMAIL_SUCCESS="$EMAIL_FAILED"
#export EMAIL_SUBJECT="builder task finished"
#export EMAIL_BODY="any text"