-
Notifications
You must be signed in to change notification settings - Fork 96
/
build-formula.sh
executable file
·193 lines (161 loc) · 5.7 KB
/
build-formula.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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
#!/usr/bin/env bash
set -euo pipefail
# echo commands as they executed
set -x
# Get path of this script so that paths are relative to it.
# This allows it to be executed from anywhere on the file system.
SCRIPTPATH="$( cd "$(dirname "$0")" ; pwd -P )"
BUILD_DIR="$SCRIPTPATH/build"
RESULTS_DIR="$BUILD_DIR/results"
# Create temp dir at root to hold files during this execution
mkdir -p $BUILD_DIR $RESULTS_DIR
export HOMEBREW_NO_INSTALL_CLEANUP=1
# Commenting out the auto upgrade since appveyor mac has an old version and fails buildilng bottles for SAM CLI
# export HOMEBREW_NO_AUTO_UPDATE=1
# for update of brew
brew update
function check_and_install_brew_pkg() {
pkg="${1}"
if [[ ! -z $(command -v ${pkg}) ]]; then
return
fi
brew install "$@"
}
USAGE=$(cat << 'EOM'
Usage: build-formula.sh -f formula_file
Builds the formula into a bottle and places it into the build dir.
Example: build-formula.sh -f Formula/aws-sam-cli.rb
Required:
-f Formula file to build
Optional:
-b Override default bottle configuration file
-h Print this usage help
-u Use existing tap instead of untapping and retapping
-l Dynamically sets the TAP to the first git remote found that is not the official aws tap
-t Specify a sepcific tap i.e. `-t bwagner5/tap`
EOM
)
LOCAL_FORK=0
USE_EXISTING_TAP=0
AWS_TAP="aws/tap"
USER_TAP=""
TAP="${AWS_TAP}"
# Process our input arguments
while getopts "f:b:hult:" opt; do
case ${opt} in
f ) # Full Formula File Path
FORMULA_FILE="${OPTARG}"
;;
b ) # Override default bottle configuration path
BOTTLE_CONFIG_PATH="${SCRIPTPATH}/${OPTARG}"
;;
l ) # Local fork
LOCAL_FORK=1
;;
u ) # Use existing tap
USE_EXISTING_TAP=1
;;
t ) # tap
USER_TAP="${OPTARG}"
;;
h )
echo "$USAGE" 1>&2
exit 0
;;
\? )
echo "$USAGE" 1>&2
exit 3
;;
esac
done
if [[ "$#" -eq 0 ]]; then
echo "ERROR: You must supply a formula file through -f"
printf "\n"
echo "$USAGE" 1>&2
exit 4
fi
BREW_CORE="homebrew/core"
SAVED_TAPS+=($(brew tap))
SAVED_TAPS=( "${SAVED_TAPS[@]/$BREW_CORE}" )
BOTTLE=$(basename ${FORMULA_FILE} .rb)
if [[ ${USE_EXISTING_TAP} -eq 1 ]]; then
SAVED_TAPS=( "${SAVED_TAPS[@]/$TAP}" )
fi
function fail_msg() {
echo "❌ Failed to build ${FORMULA_FILE} ❌"
rm -f ${BUILD_DIR}/$BOTTLE*.bottle.tar.gz
rm -f ${BUILD_DIR}/$BOTTLE*.bottle.json
brew uninstall -f ${BOTTLE} || :
for tap in "${SAVED_TAPS[@]}"; do
brew tap $tap
done
exit 2
}
trap fail_msg err int term
brew untap "${SAVED_TAPS[@]}" 2>/dev/null || :
if [[ ${USER_TAP} != "" ]]; then
TAP="${USER_TAP}"
elif [[ ${LOCAL_FORK} -eq 1 ]]; then
## find the first non-aws org tap which is assumed to be a user fork
for remote in $(git remote); do
tap_url=$(git config --get remote.$remote.url)
tap_name=$(echo $tap_url | rev | cut -d'-' -f1 | rev | cut -d'.' -f1)
tap_ns=$(echo $tap_url | rev | cut -d'/' -f2 | cut -d':' -f1 | cut -d'/' -f1 | rev)
fqt="${tap_ns}/${tap_name}"
if [[ "${fqt}" != "${AWS_TAP}" ]]; then
TAP="${fqt}"
break
fi
done
fi
if [[ ${USE_EXISTING_TAP} -eq 0 ]]; then
brew tap "${TAP}" || :
fi
check_and_install_brew_pkg jq
echo "🎬 Starting formula build for ${FORMULA_FILE}"
brew uninstall -f ${BOTTLE}
## Build formula from source locally
brew install --build-from-source "${SCRIPTPATH}/${FORMULA_FILE}"
brew uninstall -f ${BOTTLE}
## Build bottle
brew install --build-bottle ${TAP}/${BOTTLE}
DEFAULT_BOTTLE_CONFIG_PATH="${SCRIPTPATH}/bottle-configs/${BOTTLE}.json"
BOTTLE_CONFIG_PATH=${BOTTLE_CONFIG_PATH:-$DEFAULT_BOTTLE_CONFIG_PATH}
BOTTLE_CONFIG=$(jq -r '.' ${BOTTLE_CONFIG_PATH})
BOTTLE_ASSET_VERSION="$(echo ${BOTTLE_CONFIG} | jq -r '.version')"
echo "[${BOTTLE}]: Version -> ${BOTTLE_ASSET_VERSION}"
BOTTLE_ASSET_URL="$(echo ${BOTTLE_CONFIG} | jq -r '.bottle.root_url')"
echo "[${BOTTLE}]: Root URL -> ${BOTTLE_ASSET_URL}"
BIN_NAME=$(echo ${BOTTLE_CONFIG} | jq -r '.bin')
echo "[${BOTTLE}]: Bottle Binary -> ${BIN_NAME}"
if [[ $(grep -c 'bottle :unneeded' "${FORMULA_FILE}") -eq 0 ]]; then
# Need to cd since brew bottle doesn't have an option to
cd "${BUILD_DIR}"
brew bottle --no-rebuild --json --root-url="${BOTTLE_ASSET_URL}" "${TAP}/${BOTTLE}"
cd ${SCRIPTPATH}
RELEASE_FILE="$(ls ${BUILD_DIR}/${BOTTLE}--*.bottle.tar.gz)"
# Renaming aws-sam-cli--0.37.0.sierra.bottle.tar.gz to aws-sam-cli-0.37.0.sierra.bottle.tar.gz
# add debug statements for linux brew bottle issue
ls ${BUILD_DIR}
# add debug statements for linux brew bottle issue
for f in ${BUILD_DIR}/*.bottle.*; do mv "$f" "$(echo "$f" | sed s/--/-/)"; done # replacing `--` with `-`
ls ${BUILD_DIR}
RELEASE_FILE=$(echo ${RELEASE_FILE} | sed 's/--/-/')
echo "[${BOTTLE}]: Brew bottles are built. Validating them now."
echo "[${BOTTLE}]: Release file -> ${RELEASE_FILE}"
brew uninstall -f ${BOTTLE}
echo "[${BOTTLE}]: Installing release file"
brew install ${RELEASE_FILE}
fi
BUILT_BOTTLE_VERSION="$(${BIN_NAME} --version | grep -Eo '[0-9]+\.[0-9]+\.[0-9a-zA-Z\.]+')"
if [[ "${BOTTLE_ASSET_VERSION}" != "${BUILT_BOTTLE_VERSION}" ]]; then
echo "❌ [${BOTTLE}]: Version check failed. Expected: ${BOTTLE_ASSET_VERSION}, Received: ${BUILT_BOTTLE_VERSION} ❌"
exit 1
fi
echo "✅ [${BOTTLE}]: Verified that the new ${BOTTLE} version ${BUILT_BOTTLE_VERSION} is the same as what is expected ${BOTTLE_ASSET_VERSION} 🎉🥂✅"
## Touch results file for build-bottles summary
touch "${RESULTS_DIR}/${BOTTLE}"
brew uninstall -f ${BOTTLE}
for tap in "${SAVED_TAPS[@]}"; do
brew tap $tap
done