diff options
author | Jack Lloyd <[email protected]> | 2017-08-29 08:01:30 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2017-08-29 08:01:30 -0400 |
commit | 1ab497321c90a3383b47656b6b7287de14f34323 (patch) | |
tree | 1f77ae29ae03803511ef0c40f468cd9d4f472d22 | |
parent | d6b6c30d7640d690d96b974db6cb12a2f2d43f38 (diff) |
Drop CircleCI
It wasn't buying us much (just replicating a subset of Travis)
and after futzing with it for several hours yesterday trying to
get it to run via the Python script and running into all kinds of
dumb problems, I am officially not a fan.
-rw-r--r-- | circle.yml | 19 | ||||
-rw-r--r-- | readme.rst | 4 | ||||
-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-sanitizer.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 |
7 files changed, 0 insertions, 73 deletions
diff --git a/circle.yml b/circle.yml deleted file mode 100644 index f70513855..000000000 --- a/circle.yml +++ /dev/null @@ -1,19 +0,0 @@ -dependencies: - pre: - - sudo apt-get update -qq - - sudo apt-get install clang - post: - - g++ --version - - clang++ --version - -general: - branches: - only: - - master - -test: - override: - - runall() { for f in "$@"; do bash $f; done }; runall: - parallel: true - files: - - src/scripts/ci/circle/*.sh diff --git a/readme.rst b/readme.rst index de0ced0f0..7bbb9f5de 100644 --- a/readme.rst +++ b/readme.rst @@ -58,10 +58,6 @@ external build systems, see the manual for details. :target: https://ci.appveyor.com/project/randombit/botan/branch/master :alt: AppVeyor CI status -.. image:: https://circleci.com/gh/randombit/botan.svg?style=shield - :target: https://circleci.com/gh/randombit/botan - :alt: CircleCI status - .. image:: https://botan-ci.kullo.net/badge :target: https://botan-ci.kullo.net/ :alt: Kullo CI status diff --git a/src/scripts/ci/circle/clang-shared-debug.sh b/src/scripts/ci/circle/clang-shared-debug.sh deleted file mode 100755 index 5f38cad7c..000000000 --- a/src/scripts/ci/circle/clang-shared-debug.sh +++ /dev/null @@ -1,10 +0,0 @@ -#!/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" --with-debug-info --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 deleted file mode 100755 index 56f111190..000000000 --- a/src/scripts/ci/circle/clang-static-debug.sh +++ /dev/null @@ -1,10 +0,0 @@ -#!/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" --with-debug-info --cc=clang --disable-shared -make -j 2 -f "$BUILD_DIR"/Makefile -"$BUILD_DIR"/botan-test diff --git a/src/scripts/ci/circle/gcc-sanitizer.sh b/src/scripts/ci/circle/gcc-sanitizer.sh deleted file mode 100755 index 27d7268d9..000000000 --- a/src/scripts/ci/circle/gcc-sanitizer.sh +++ /dev/null @@ -1,10 +0,0 @@ -#!/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" --with-debug-info --with-sanitizer -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 deleted file mode 100755 index 4f5ed1b6d..000000000 --- a/src/scripts/ci/circle/gcc-shared-debug.sh +++ /dev/null @@ -1,10 +0,0 @@ -#!/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" --with-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 deleted file mode 100755 index 16eee81aa..000000000 --- a/src/scripts/ci/circle/gcc-static-debug.sh +++ /dev/null @@ -1,10 +0,0 @@ -#!/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" --with-debug-info --disable-shared --amalgamation -make -j 2 -f "$BUILD_DIR"/Makefile -"$BUILD_DIR"/botan-test |