blob: cd7baa9c7cbab75859916cbe954acfc3cf21edeb (
plain) (
blame)
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
|
#!/usr/bin/env bash
set -o errexit -o nounset -o pipefail
shopt -s inherit_errexit lastpipe
test_build() {
docker-compose build --progress plain --pull "$@"
}
test_build_clang() {
echo ----------------------------------------------------------------------
echo Building w/ clang
echo ----------------------------------------------------------------------
echo
test_build --build-arg C_COMPILER=clang
}
test_build_gcc() {
echo ----------------------------------------------------------------------
echo Building w/ gcc
echo ----------------------------------------------------------------------
echo
test_build --build-arg C_COMPILER=gcc
}
main() {
test_build_gcc
test_build_clang
}
main
|