-
Notifications
You must be signed in to change notification settings - Fork 163
/
docker-compose.sh
executable file
·374 lines (300 loc) · 10.7 KB
/
docker-compose.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
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
#!/usr/bin/env bash
#
# MetaCall Build Bash Script by Parra Studios
# Build and install bash script utility for MetaCall.
#
# Copyright (C) 2016 - 2024 Vicente Eduardo Ferrer Garcia <[email protected]>
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
set -euxo pipefail
# Enable BuildKit whenever possible
export COMPOSE_DOCKER_CLI_BUILD=1
export DOCKER_BUILDKIT=1
export BUILDKIT_PROGRESS=plain
export PROGRESS_NO_TRUNC=1
# Check if docker compose command is available
if [ -x "$(command -v docker-compose)" ]; then
DOCKER_COMPOSE="docker-compose"
elif $(docker compose &>/dev/null) && [ $? -eq 0 ]; then
DOCKER_COMPOSE="docker compose"
else
echo "Docker Compose not installed, install it and re-run the script"
exit 1
fi
# Pull MetaCall Docker Compose
sub_pull() {
if [ -z "$IMAGE_NAME" ]; then
echo "Error: IMAGE_NAME variable not defined"
exit 1
fi
docker pull $IMAGE_NAME:deps && docker tag $IMAGE_NAME:deps metacall/core:deps || true
docker pull $IMAGE_NAME:dev && docker tag $IMAGE_NAME:dev metacall/core:dev || true
docker pull $IMAGE_NAME:runtime && docker tag $IMAGE_NAME:runtime metacall/core:runtime || true
docker pull $IMAGE_NAME:cli && docker tag $IMAGE_NAME:cli metacall/core:cli || true
}
# Build MetaCall Docker Compose (link manually dockerignore files)
sub_build() {
ln -sf tools/deps/.dockerignore .dockerignore
$DOCKER_COMPOSE -f docker-compose.yml build --force-rm deps
ln -sf tools/dev/.dockerignore .dockerignore
$DOCKER_COMPOSE -f docker-compose.yml build --force-rm dev
ln -sf tools/runtime/.dockerignore .dockerignore
$DOCKER_COMPOSE -f docker-compose.yml build --force-rm runtime
ln -sf tools/cli/.dockerignore .dockerignore
$DOCKER_COMPOSE -f docker-compose.yml build --force-rm cli
}
# Build MetaCall Docker Compose without cache (link manually dockerignore files)
sub_rebuild() {
ln -sf tools/deps/.dockerignore .dockerignore
$DOCKER_COMPOSE -f docker-compose.yml build --force-rm --no-cache deps
ln -sf tools/dev/.dockerignore .dockerignore
$DOCKER_COMPOSE -f docker-compose.yml build --force-rm --no-cache dev
ln -sf tools/runtime/.dockerignore .dockerignore
$DOCKER_COMPOSE -f docker-compose.yml build --force-rm --no-cache runtime
ln -sf tools/cli/.dockerignore .dockerignore
$DOCKER_COMPOSE -f docker-compose.yml build --force-rm --no-cache cli
}
# Build MetaCall Docker Compose for testing (link manually dockerignore files)
sub_test() {
# Disable BuildKit as workaround due to log limits (TODO: https://github.com/docker/buildx/issues/484)
export DOCKER_BUILDKIT=0
# Disable build with sanitizer
export METACALL_BUILD_SANITIZER=
# Disable build with coverage
export METACALL_BUILD_COVERAGE=
# Define build type
export METACALL_BUILD_TYPE=${METACALL_BUILD_TYPE:-debug}
ln -sf tools/deps/.dockerignore .dockerignore
$DOCKER_COMPOSE -f docker-compose.yml -f docker-compose.test.yml build --force-rm deps
ln -sf tools/dev/.dockerignore .dockerignore
$DOCKER_COMPOSE -f docker-compose.yml -f docker-compose.test.yml build --force-rm dev
}
# Build MetaCall Docker Compose with Sanitizer for testing (link manually dockerignore files)
sub_test_sanitizer() {
# Disable BuildKit as workaround due to log limits (TODO: https://github.com/docker/buildx/issues/484)
export DOCKER_BUILDKIT=0
# Enable build with sanitizer
export METACALL_BUILD_SANITIZER=${METACALL_BUILD_SANITIZER:-address-sanitizer}
# Disable build with coverage
export METACALL_BUILD_COVERAGE=
# Define build type
export METACALL_BUILD_TYPE=${METACALL_BUILD_TYPE:-debug}
ln -sf tools/deps/.dockerignore .dockerignore
$DOCKER_COMPOSE -f docker-compose.yml -f docker-compose.test.yml build --force-rm deps
ln -sf tools/dev/.dockerignore .dockerignore
if [ ! -z "${SANITIZER_SKIP_SUMMARY:-}" ]; then
$DOCKER_COMPOSE -f docker-compose.yml -f docker-compose.test.yml build --force-rm dev
else
$DOCKER_COMPOSE -f docker-compose.yml -f docker-compose.test.yml build --force-rm dev | tee /tmp/metacall-test-output
# Retrieve all the summaries
SUMMARY=$(grep "SUMMARY:" /tmp/metacall-test-output)
echo "${SUMMARY}"
printf "Number of leaks detected: "
echo "${SUMMARY}" | awk '{print $7}' | awk '{s+=$1} END {print s}'
# Count the number of tests that really failed and avoid the false positives
FAILED=$(grep "FAILED TEST" /tmp/metacall-test-output)
printf "Number of tests failed: "
echo "${FAILED}" | awk '{print $1}' | awk '{s+=$1} END {print s}'
# Get the potential tests that failed
BEGIN=$(grep -n "The following tests FAILED:" /tmp/metacall-test-output | cut -d : -f 1)
END=$(grep -n "Errors while running CTest" /tmp/metacall-test-output | cut -d : -f 1)
if [ -z "${BEGIN}" ] || [ -z "${END}" ]; then
echo "ERROR! CTest failed to print properly the output, run tests again:"
echo " Recompiling everything: docker rmi metacall/core:dev && ./docker-compose.sh test-${METACALL_BUILD_SANITIZER}"
echo " Without recompiling (needs to be built successfully previously): docker run --rm -it metacall/core:dev sh -c \"cd build && ctest -j$(getconf _NPROCESSORS_ONLN) --output-on-failure\""
else
BEGIN=$((BEGIN + 1))
END=$((END - 1))
echo "List of potential failed tests:"
sed -n "${BEGIN},${END}p" /tmp/metacall-test-output
fi
rm /tmp/metacall-test-output
fi
}
# Build MetaCall Docker Compose for coverage (link manually dockerignore files)
sub_coverage() {
# Disable BuildKit as workaround due to log limits (TODO: https://github.com/docker/buildx/issues/484)
export DOCKER_BUILDKIT=0
# Disable build with sanitizer
export METACALL_BUILD_SANITIZER=
# Disable build with coverage
export METACALL_BUILD_COVERAGE=coverage
# Define build type
export METACALL_BUILD_TYPE=debug
ln -sf tools/deps/.dockerignore .dockerignore
$DOCKER_COMPOSE -f docker-compose.yml -f docker-compose.test.yml build --force-rm deps
ln -sf tools/dev/.dockerignore .dockerignore
$DOCKER_COMPOSE -f docker-compose.yml -f docker-compose.test.yml build --force-rm dev
}
# Build MetaCall Docker Compose with caching (link manually dockerignore files)
sub_cache() {
if [ -z "$IMAGE_REGISTRY" ]; then
echo "Error: IMAGE_REGISTRY variable not defined"
exit 1
fi
ln -sf tools/deps/.dockerignore .dockerignore
$DOCKER_COMPOSE -f docker-compose.yml -f docker-compose.cache.yml build deps
ln -sf tools/dev/.dockerignore .dockerignore
$DOCKER_COMPOSE -f docker-compose.yml -f docker-compose.cache.yml build dev
ln -sf tools/runtime/.dockerignore .dockerignore
$DOCKER_COMPOSE -f docker-compose.yml -f docker-compose.cache.yml build runtime
ln -sf tools/cli/.dockerignore .dockerignore
$DOCKER_COMPOSE -f docker-compose.yml -f docker-compose.cache.yml build cli
}
# Build MetaCall Docker Compose with multi-platform specifier (link manually dockerignore files)
sub_platform() {
if [ -z "$METACALL_PLATFORM" ]; then
echo "Error: METACALL_PLATFORM variable not defined"
exit 1
fi
ln -sf tools/deps/.dockerignore .dockerignore
$DOCKER_COMPOSE -f docker-compose.yml -f docker-compose.platform.yml build deps
ln -sf tools/dev/.dockerignore .dockerignore
$DOCKER_COMPOSE -f docker-compose.yml -f docker-compose.platform.yml build dev
ln -sf tools/runtime/.dockerignore .dockerignore
$DOCKER_COMPOSE -f docker-compose.yml -f docker-compose.platform.yml build runtime
ln -sf tools/cli/.dockerignore .dockerignore
$DOCKER_COMPOSE -f docker-compose.yml -f docker-compose.platform.yml build cli
}
# Push MetaCall Docker Compose
sub_push() {
if [ -z "$IMAGE_NAME" ]; then
echo "Error: IMAGE_NAME variable not defined"
exit 1
fi
# Push deps image
docker tag metacall/core:deps $IMAGE_NAME:deps
docker push $IMAGE_NAME:deps
# Push dev image
docker tag metacall/core:dev $IMAGE_NAME:dev
docker push $IMAGE_NAME:dev
# Push runtime image
docker tag metacall/core:runtime $IMAGE_NAME:runtime
docker push $IMAGE_NAME:runtime
# Push cli image
docker tag metacall/core:cli $IMAGE_NAME:cli
docker push $IMAGE_NAME:cli
# Push cli as a latest
docker tag metacall/core:cli $IMAGE_NAME:latest
docker push $IMAGE_NAME:latest
}
# Version MetaCall Docker Compose
sub_version() {
if [ -z "$IMAGE_NAME" ]; then
echo "Error: IMAGE_NAME variable not defined"
exit 1
fi
VERSION=$(tail -n 1 VERSION | tr -d '\n')
# Push deps image
docker tag metacall/core:deps $IMAGE_NAME:${VERSION}-deps
docker push $IMAGE_NAME:${VERSION}-deps
# Push dev image
docker tag metacall/core:dev $IMAGE_NAME:${VERSION}-dev
docker push $IMAGE_NAME:${VERSION}-dev
# Push runtime image
docker tag metacall/core:runtime $IMAGE_NAME:${VERSION}-runtime
docker push $IMAGE_NAME:${VERSION}-runtime
# Push cli image
docker tag metacall/core:cli $IMAGE_NAME:${VERSION}-cli
docker push $IMAGE_NAME:${VERSION}-cli
# Push cli image as version
docker tag metacall/core:cli $IMAGE_NAME:${VERSION}
docker push $IMAGE_NAME:${VERSION}
}
# Pack MetaCall Docker Compose
sub_pack() {
if [ -z "$ARTIFACTS_PATH" ]; then
echo "Error: ARTIFACTS_PATH variable not defined"
exit 1
fi
# Get path where docker-compose.sh is located
BASE_DIR="$(cd "$(dirname "$0")" && pwd)"
# Load default environment variables
. $BASE_DIR/.env
# Run the package builds
docker run --name metacall_core_pack -i metacall/core:dev /bin/bash -c 'cd build && make pack'
# Create artifacts folder
mkdir -p $ARTIFACTS_PATH
# Copy artifacts
docker cp metacall_core_pack:$METACALL_PATH/build/packages $ARTIFACTS_PATH
# Remove docker instance
docker rm metacall_core_pack
# List generated artifacts
ls -la $ARTIFACTS_PATH/packages
}
# Help
sub_help() {
echo "Usage: `basename "$0"` option"
echo "Options:"
echo " pull"
echo " build"
echo " rebuild"
echo " test"
echo " test-address-sanitizer"
echo " test-thread-sanitizer"
echo " test-memory-sanitizer"
echo " coverage"
echo " cache"
echo " platform"
echo " push"
echo " pack"
echo ""
}
case "$1" in
pull)
sub_pull
;;
build)
sub_build
;;
rebuild)
sub_rebuild
;;
test)
sub_test
;;
test-address-sanitizer)
export METACALL_BUILD_SANITIZER="address-sanitizer"
sub_test_sanitizer
;;
test-thread-sanitizer)
export METACALL_BUILD_SANITIZER="thread-sanitizer"
sub_test_sanitizer
;;
test-memory-sanitizer)
export METACALL_BUILD_SANITIZER="memory-sanitizer"
sub_test_sanitizer
;;
coverage)
sub_coverage
;;
cache)
sub_cache
;;
platform)
sub_platform
;;
push)
sub_push
;;
version)
sub_version
;;
pack)
sub_pack
;;
*)
sub_help
;;
esac