From 075d39faa6e95178bb710fbac34ca026c9e02730 Mon Sep 17 00:00:00 2001 From: wtlgo <50925676+wtlgo@users.noreply.github.com> Date: Wed, 30 Oct 2019 04:50:14 +0300 Subject: [PATCH] Delete .travis.yml --- .travis.yml | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index c754267..0000000 --- a/.travis.yml +++ /dev/null @@ -1,24 +0,0 @@ -dist: trusty -sudo: required -language: - - cpp -compiler: - - gcc -addons: - apt: - sources: - - ubuntu-toolchain-r-test - packages: - - gcc-6 - - g++-6 - - cmake -script: - # Link gcc-6 and g++-6 to their standard commands - - ln -s /usr/bin/gcc-6 /usr/local/bin/gcc - - ln -s /usr/bin/g++-6 /usr/local/bin/g++ - # Export CC and CXX to tell cmake which compiler to use - - export CC=/usr/bin/gcc-6 - - export CXX=/usr/bin/g++-6 - # Check versions of gcc, g++ and cmake - - gcc -v && g++ -v && cmake --version - # Run your build commands next