testing travis-ci #6

This commit is contained in:
Phuntsok Drak-pa 2018-05-03 12:04:43 +02:00
parent a23a42e86d
commit 973c5897e5
2 changed files with 26 additions and 39 deletions

View File

@ -1,33 +1,20 @@
sudo: false
language: cpp language: cpp
compiler: clang
os: linux os: linux
dist: trusty dist: trusty
matrix: matrix:
include: include:
- env: - script:
- CC=clang-5.0 - cd build
CXX=clang++-5.0 - cmake -DCMAKE_BUILD_TYPE=Debug ..
BUILD_TYPE=Release - make -j
BIN_DIR=bin - script:
addons: &clang40 - cd build
apt: - cmake -DCMAKE_BUILD_TYPE=Release ..
packages: - make -j
- g++-5
- clang-5.0
sources:
- ubuntu-toolchain-r-test
- llvm-toolchain-trusty-5.0
- sourceline: 'deb http://apt.llvm.org/trusty/ llvm-toolchain-trusty-4.0 main'
key_url: 'https://apt.llvm.org/llvm-snapshot.gpg.key'
- env:
- CC=clang-5.0
- CXX=clang++-5.0
- BUILD_TYPE=Release
- BIN_DIR=bin
addons: *clang40
script: notifications:
- cd build email:
- cmake -DCMAKE_BUILD_TYPE=$BUILD .. - phundrak@phundrak.fr
- make -j
- ../$BINDIR/projet_lzw -c -i ../$BINDIR/projet_lzw

View File

@ -8,24 +8,24 @@ set(TGT "projet_lzw")
set(${TGT}_VERSION_MAJOR 0) set(${TGT}_VERSION_MAJOR 0)
set(${TGT}_VERSION_MINOR 1) set(${TGT}_VERSION_MINOR 1)
set(CXX_COVERAGE_COMPILE_FLAGS "-pedantic -Wall -Wextra -Wold-style-cast -Woverloaded-virtual -Wfloat-equal -Wwrite-strings -Wpointer-arith -Wcast-qual -Wcast-align -Wconversion -Wsign-conversion -Wshadow -Weffc++ -Wredundant-decls -Wdouble-promotion -Winit-self -Wswitch-default -Wswitch-enum -Wundef -Winline -Wunused -Wnon-virtual-dtor -pthread") set(CXX_COVERAGE_COMPILE_FLAGS "-std=c++1z -pedantic -Wall -Wextra -Wold-style-cast -Woverloaded-virtual -Wfloat-equal -Wwrite-strings -Wpointer-arith -Wcast-qual -Wcast-align -Wconversion -Wsign-conversion -Wshadow -Weffc++ -Wredundant-decls -Wdouble-promotion -Winit-self -Wswitch-default -Wswitch-enum -Wundef -Winline -Wunused -Wnon-virtual-dtor -pthread")
set(CMAKE_CXX_FLAGS_DEBUG "${CXX_COVERAGE_COMPILE_FLAGS} -DDebug -g -pg") set(CMAKE_CXX_FLAGS_DEBUG "${CXX_COVERAGE_COMPILE_FLAGS} -DDebug -g -pg")
set(CMAKE_CXX_FLAGS_RELEASE "${CXX_COVERAGE_COMPILE_FLAGS} -O3") set(CMAKE_CXX_FLAGS_RELEASE "${CXX_COVERAGE_COMPILE_FLAGS} -O3")
include(CheckCXXCompilerFlag) include(CheckCXXCompilerFlag)
# Check for standard to use # Check for standard to use
check_cxx_compiler_flag(-std=c++17 HAVE_FLAG_STD_CXX17) #check_cxx_compiler_flag(-std=c++17 HAVE_FLAG_STD_CXX17)
if(HAVE_FLAG_STD_CXX17) #if(HAVE_FLAG_STD_CXX17)
set(CMAKE_CXX_STANDARD 17) # set(CMAKE_CXX_STANDARD 17)
else() #else()
check_cxx_compiler_flag(-std=c++1z HAVE_FLAG_STD_CXX1Z) # check_cxx_compiler_flag(-std=c++1z HAVE_FLAG_STD_CXX1Z)
if(HAVE_FLAG_STD_CXX1Z) # if(HAVE_FLAG_STD_CXX1Z)
set(CXX_COVERAGE_COMPILE_FLAGS "${CXX_COVERAGE_COMPILE_FLAGS} -std=c++1z") # set(CXX_COVERAGE_COMPILE_FLAGS "${CXX_COVERAGE_COMPILE_FLAGS} -std=c++1z")
else() # else()
message( FATAL_ERROR "C++17 not supported, CMake will exit." ) # message( FATAL_ERROR "C++17 not supported, CMake will exit." )
endif() # endif()
endif() #endif()
# set(CMAKE_CXX_STANDARD 17) # set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD_REQUIRED YES) set(CMAKE_CXX_STANDARD_REQUIRED YES)