diff options
Diffstat (limited to 'src/scripts/ci')
-rwxr-xr-x | src/scripts/ci/circle/clang-shared-debug.sh | 10 | ||||
-rwxr-xr-x | src/scripts/ci/circle/clang-static-debug.sh | 10 | ||||
-rwxr-xr-x | src/scripts/ci/circle/gcc-shared-debug.sh | 10 | ||||
-rwxr-xr-x | src/scripts/ci/circle/gcc-static-debug.sh | 10 |
4 files changed, 40 insertions, 0 deletions
diff --git a/src/scripts/ci/circle/clang-shared-debug.sh b/src/scripts/ci/circle/clang-shared-debug.sh new file mode 100755 index 000000000..2ef4e6dd5 --- /dev/null +++ b/src/scripts/ci/circle/clang-shared-debug.sh @@ -0,0 +1,10 @@ +#!/bin/bash +set -ev +which shellcheck > /dev/null && shellcheck "$0" # Run shellcheck on this if available + +BUILD_NICKNAME=$(basename "$0" .sh) +BUILD_DIR="./build-$BUILD_NICKNAME" + +./configure.py --with-build-dir="$BUILD_DIR" --build-mode=debug --cc=clang +make -j 2 -f "$BUILD_DIR"/Makefile +"$BUILD_DIR"/botan-test diff --git a/src/scripts/ci/circle/clang-static-debug.sh b/src/scripts/ci/circle/clang-static-debug.sh new file mode 100755 index 000000000..8bf96fcfe --- /dev/null +++ b/src/scripts/ci/circle/clang-static-debug.sh @@ -0,0 +1,10 @@ +#!/bin/bash +set -ev +which shellcheck > /dev/null && shellcheck "$0" # Run shellcheck on this if available + +BUILD_NICKNAME=$(basename "$0" .sh) +BUILD_DIR="./build-$BUILD_NICKNAME" + +./configure.py --with-build-dir="$BUILD_DIR" --build-mode=debug --cc=clang --disable-shared --via-amalgamation +make -j 2 -f "$BUILD_DIR"/Makefile +"$BUILD_DIR"/botan-test diff --git a/src/scripts/ci/circle/gcc-shared-debug.sh b/src/scripts/ci/circle/gcc-shared-debug.sh new file mode 100755 index 000000000..93530b8ac --- /dev/null +++ b/src/scripts/ci/circle/gcc-shared-debug.sh @@ -0,0 +1,10 @@ +#!/bin/bash +set -ev +which shellcheck > /dev/null && shellcheck "$0" # Run shellcheck on this if available + +BUILD_NICKNAME=$(basename "$0" .sh) +BUILD_DIR="./build-$BUILD_NICKNAME" + +./configure.py --with-build-dir="$BUILD_DIR" --build-mode=debug +make -j 2 -f "$BUILD_DIR"/Makefile +"$BUILD_DIR"/botan-test diff --git a/src/scripts/ci/circle/gcc-static-debug.sh b/src/scripts/ci/circle/gcc-static-debug.sh new file mode 100755 index 000000000..c7d23b9b0 --- /dev/null +++ b/src/scripts/ci/circle/gcc-static-debug.sh @@ -0,0 +1,10 @@ +#!/bin/bash +set -ev +which shellcheck > /dev/null && shellcheck "$0" # Run shellcheck on this if available + +BUILD_NICKNAME=$(basename "$0" .sh) +BUILD_DIR="./build-$BUILD_NICKNAME" + +./configure.py --with-build-dir="$BUILD_DIR" --build-mode=debug --disable-shared --via-amalgamation +make -j 2 -f "$BUILD_DIR"/Makefile +"$BUILD_DIR"/botan-test |