From 01814b2d7cd66df05e091c279d5591519293d81c Mon Sep 17 00:00:00 2001 From: fpagliughi Date: Tue, 2 Jul 2024 00:07:36 -0400 Subject: [PATCH] Removed the Travis CI files --- .travis.yml | 61 ---------------------------------------- travis_build.sh | 19 ------------- travis_install_catch2.sh | 20 ------------- 3 files changed, 100 deletions(-) delete mode 100644 .travis.yml delete mode 100755 travis_build.sh delete mode 100755 travis_install_catch2.sh diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index c8ab1f3..0000000 --- a/.travis.yml +++ /dev/null @@ -1,61 +0,0 @@ -language: cpp -sudo: required -dist: xenial -os: linux - -before_install: - - ./travis_install_catch2.sh - -matrix: - include: - - compiler: gcc - addons: - apt: - sources: - - ubuntu-toolchain-r-test - packages: - - g++-7 - env: COMPILER=g++-7 - - compiler: gcc - addons: - apt: - sources: - - ubuntu-toolchain-r-test - packages: - - g++-8 - env: COMPILER=g++-8 - - compiler: clang - addons: - apt: - sources: - - ubuntu-toolchain-r-test - packages: - - g++-8 - - clang-6.0 - env: COMPILER=clang++-6.0 - - compiler: clang - addons: - apt: - sources: - - ubuntu-toolchain-r-test - - llvm-toolchain-xenial-7 - packages: - - g++-8 - - clang-7 - env: COMPILER=clang++-7 - - compiler: clang - addons: - apt: - sources: - - ubuntu-toolchain-r-test - - llvm-toolchain-xenial-8 - packages: - - g++-8 - - clang-8 - env: COMPILER=clang++-8 - exclude: - - compiler: gcc - - -script: if [ "$COMPILER" == "" ]; then CXX=g++ ./travis_build.sh; else CXX=$COMPILER ./travis_build.sh; fi - diff --git a/travis_build.sh b/travis_build.sh deleted file mode 100755 index 3019922..0000000 --- a/travis_build.sh +++ /dev/null @@ -1,19 +0,0 @@ -#!/bin/bash -# -# travis_build.sh -# -# Travis CI build/test script for the "cooper" C++ actor library. -# - -set -e - -echo "travis build dir $TRAVIS_BUILD_DIR pwd $PWD" -cmake -Bbuild -H. -DCOOPER_BUILD_EXAMPLES=ON -DCOOPER_BUILD_TESTS=ON -cmake --build build/ - -# Run the unit tests -./build/tests/unit/unit_tests --success - -#ctest -VV --timeout 600 -#cpack --verbose - diff --git a/travis_install_catch2.sh b/travis_install_catch2.sh deleted file mode 100755 index e7c1e77..0000000 --- a/travis_install_catch2.sh +++ /dev/null @@ -1,20 +0,0 @@ -#!/bin/bash -# -# travis_install_catch2.sh -# -# Travis CI build/test script for the sockpp library. -# This installs Catch2 into the VM. -# - -set -ex - -# Install Catch2 from sources -wget https://github.com/catchorg/Catch2/archive/v2.5.0.tar.gz -tar -xf v2.5.0.tar.gz -cd Catch2-2.5.0/ -cmake -Bbuild -H. -DBUILD_TESTING=OFF - -# CMake bin is installed in a strange place where -# sudo can not find by default. -sudo env "PATH=$PATH" cmake --build build/ --target install -