forked from netz98/n98-magerun2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sh
executable file
·104 lines (83 loc) · 2.8 KB
/
build.sh
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
#!/bin/bash
#
# build from clean checkout
#
# usage: ./build.sh from project root
set -euo pipefail
IFS=$'\n\t'
exit_trap() {
local status=$?
if [[ -d "${base_dir}/${build_dir}" ]]; then
echo "trap: removing '${build_dir}'.."
rm -rf "${base_dir}/${build_dir}"
fi
echo "exit ($status)."
}
establish_build_dir() {
local build_dir="${1}"
rm -rf "${build_dir}"
if [[ -d "${build_dir}" ]]; then
>&2 echo "Error: Can not remove build-dir '${build_dir}'"
echo "aborting."
exit 1
fi
mkdir "${build_dir}"
if [[ ! -d "${build_dir}" ]]; then
>&2 echo "Error: Can not create build-dir '${build_dir}'"
echo "aborting."
exit 1
fi
}
name="$(perl -ne '/<project name="([^"]*)"/ and print $1 and last' build.xml)"
nice_name="$(php -r "echo str_replace(' ', '', ucwords(strtr('${name}', '-', ' ')));")"
phar="${name}.phar"
echo "Building ${phar}..."
base_dir="$(pwd -P)"
build_dir="build/output"
echo "$0 executed in ${base_dir}"
trap exit_trap EXIT
establish_build_dir "${build_dir}"
git clone --quiet --no-local --depth 1 -- . "${build_dir}"
composer_bin="${base_dir}/vendor/bin/composer"
phing_bin="${base_dir}/vendor/bin/phing"
# Set COMPOSER_HOME if HOME and COMPOSER_HOME not set (shell with no home-dir, e.g. build server with webhook)
if [[ -z ${HOME+x} && -z ${COMPOSER_HOME+x} ]]; then
echo "provision: create COMPOSER_HOME directory for composer (no HOME)"
mkdir -p "build/composer-home"
export COMPOSER_HOME="$(pwd -P)/build/composer-home"
fi
# build systems that do not have a composer install running get one for free
if [[ ! -f "${phing_bin}" ]]; then
echo "provision: download composer.phar and install build dependencies ..."
composer="composer.phar"
rm -rf vendor
wget -q -O "${composer}" https://getcomposer.org/download/1.3.2/composer.phar
chmod +x "${composer}"
php -f "${composer}" -- --version
php -f "${composer}" -- --profile -q install --prefer-dist --no-interaction --ignore-platform-reqs
rm "${composer}"
fi
echo "with: $(php --version|head -n 1)"
echo "with: $("${composer_bin}" --version)"
echo "with: $("${phing_bin}" -version)"
cd "${build_dir}"
echo "building in $(pwd -P)"
echo "build version: $(git --no-pager log --oneline -1)"
echo "provision: ulimits (soft) set from $(ulimit -Sn) to $(ulimit -Hn) (hard) for faster phar builds..."
if [ "$(uname -s)" != "Darwin" ]; then
ulimit -Sn $(ulimit -Hn)
fi
timestamp="$(git log --format=format:%ct HEAD -1)" # reproduceable build
echo "build timestamp: ${timestamp}"
php -f "${phing_bin}" -dphar.readonly=0 -- \
-Dcomposer_suffix="${nice_name}${timestamp}" \
-Dcomposer_bin="${composer_bin}" \
dist_clean
php -f build/phar/phar-timestamp.php
php -f "${phar}" -- --version
ls -al "${phar}"
cd -
cp -vp "${build_dir}"/"${phar}" "${phar}"
rm -rf "${build_dir}"
trap - EXIT
echo "done."