aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/ci.sh
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2023-07-26 01:00:48 +0200
committerEgor Tensin <Egor.Tensin@gmail.com>2023-07-26 01:00:48 +0200
commit2cb3e42b7ea9ba6b169d02827475a6a19fd35b3b (patch)
treef74c59341340d82c1006e7a138c92af37f47a911 /ci.sh
parentflamegraph.sh: prettier and narrower graphs (diff)
downloadcimple-2cb3e42b7ea9ba6b169d02827475a6a19fd35b3b.tar.gz
cimple-2cb3e42b7ea9ba6b169d02827475a6a19fd35b3b.zip
use tabs consistently
Diffstat (limited to 'ci.sh')
-rwxr-xr-xci.sh26
1 files changed, 13 insertions, 13 deletions
diff --git a/ci.sh b/ci.sh
index dd45b89..82bf069 100755
--- a/ci.sh
+++ b/ci.sh
@@ -4,28 +4,28 @@ set -o errexit -o nounset -o pipefail
shopt -s inherit_errexit lastpipe
test_build() {
- docker-compose build --progress plain --pull "$@"
+ docker-compose build --progress plain --pull "$@"
}
test_build_clang() {
- echo ----------------------------------------------------------------------
- echo Building w/ clang
- echo ----------------------------------------------------------------------
- echo
- test_build --build-arg COMPILER=clang
+ echo ----------------------------------------------------------------------
+ echo Building w/ clang
+ echo ----------------------------------------------------------------------
+ echo
+ test_build --build-arg COMPILER=clang
}
test_build_gcc() {
- echo ----------------------------------------------------------------------
- echo Building w/ gcc
- echo ----------------------------------------------------------------------
- echo
- test_build --build-arg COMPILER=gcc
+ echo ----------------------------------------------------------------------
+ echo Building w/ gcc
+ echo ----------------------------------------------------------------------
+ echo
+ test_build --build-arg COMPILER=gcc
}
main() {
- test_build_gcc
- test_build_clang
+ test_build_gcc
+ test_build_clang
}
main