2018-03-09 08:45:23 +01:00
|
|
|
language: C
|
|
|
|
sudo: false
|
|
|
|
matrix:
|
|
|
|
include:
|
|
|
|
- os: linux
|
|
|
|
compiler: gcc
|
|
|
|
env: GCC_BUILD=ON
|
|
|
|
before_script:
|
|
|
|
- pip install --user cpp-coveralls
|
|
|
|
after_success:
|
|
|
|
- coveralls --build-root build --include src --include tests --gcov-options '\-lp'
|
2018-03-09 09:03:03 +01:00
|
|
|
- os: linux
|
|
|
|
compiler: clang
|
|
|
|
env: GCC_BUILD=OFF
|
2018-03-09 08:45:23 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
script:
|
|
|
|
# Print all environment variables to aid in CI development
|
|
|
|
- printenv
|
|
|
|
# Print version and available CMake generators to aid in CI development
|
|
|
|
- cmake --version
|
|
|
|
- cmake --help
|
|
|
|
|
|
|
|
# Build cmocka
|
2018-03-09 08:53:59 +01:00
|
|
|
- mkdir -p tests/cmocka-1.1.0/build
|
|
|
|
- cd tests/cmocka-1.1.0/build
|
|
|
|
- cmake ..
|
|
|
|
- make
|
|
|
|
- cd ../../..
|
2018-03-09 08:45:23 +01:00
|
|
|
- ls
|
|
|
|
|
2018-03-09 09:03:03 +01:00
|
|
|
# Perform out-of-source build(CMake backend generation, build, and test)
|
|
|
|
# Test build without optimizations
|
|
|
|
- mkdir -p build
|
|
|
|
- cd build
|
|
|
|
- cmake .. -DFORT_TEST_BUILD=ON -DFORT_GCC_BUILD=${GCC_BUILD}
|
|
|
|
- cmake --build . --target all
|
|
|
|
- ls
|
|
|
|
- ./libfort_test
|
|
|
|
|
|
|
|
|
2018-03-09 08:45:23 +01:00
|
|
|
# # Perform out-of-source build(CMake backend generation, build, and test)
|
|
|
|
# # Test build without optimizations
|
|
|
|
# - cd build
|
|
|
|
# - cmake .. -DCERAII_TEST_BUILD=ON -DCERAII_GCC_BUILD=${GCC_BUILD} -DCERAII_PERF_OPTIMIZED_BUILD=OFF
|
|
|
|
# - cmake --build . --target all
|
|
|
|
# - ls
|
|
|
|
# - ./test_basic
|
|
|
|
# - ./test_multithread
|
|
|
|
# # Test build with optimizations
|
|
|
|
# - cd ..
|
|
|
|
# - rm -r build/*
|
|
|
|
# - cd build
|
|
|
|
# - cmake .. -DCERAII_TEST_BUILD=ON -DCERAII_GCC_BUILD=${GCC_BUILD} -DCERAII_PERF_OPTIMIZED_BUILD=ON
|
|
|
|
# - cmake --build . --target all
|
|
|
|
# - ls
|
|
|
|
# - ./test_basic
|
|
|
|
# - ./test_multithread
|
|
|
|
# # Production build without optimizations
|
|
|
|
# - cd ..
|
|
|
|
# - rm -r build/*
|
|
|
|
# - cd build
|
|
|
|
# - cmake .. -DCERAII_TEST_BUILD=OFF -DCERAII_GCC_BUILD=${GCC_BUILD} -DCERAII_PERF_OPTIMIZED_BUILD=OFF
|
|
|
|
# - cmake --build . --target all
|
|
|
|
# - ls
|
|
|
|
# - ./test_basic
|
|
|
|
# - ./test_multithread
|
|
|
|
# # Production build with optimizations
|
|
|
|
# - cd ..
|
|
|
|
# - rm -r build/*
|
|
|
|
# - cd build
|
|
|
|
# - cmake .. -DCERAII_TEST_BUILD=OFF -DCERAII_GCC_BUILD=${GCC_BUILD} -DCERAII_PERF_OPTIMIZED_BUILD=ON
|
|
|
|
# - cmake --build . --target all
|
|
|
|
# - ls
|
|
|
|
# - ./test_basic
|
|
|
|
# - ./test_multithread
|
|
|
|
# # Build for coveralls
|
|
|
|
# - cd ..
|
|
|
|
# # - rm -r build/*
|
|
|
|
# - cd build
|
|
|
|
# - if [ ${GCC_BUILD} == 'ON' ];
|
|
|
|
# then
|
|
|
|
# cd .. ;
|
|
|
|
# rm -r build/* ;
|
|
|
|
# cd build ;
|
|
|
|
# cmake .. -DCERAII_COVERALLS_BUILD=ON -DCERAII_TEST_BUILD=ON -DCERAII_GCC_BUILD=${GCC_BUILD} -DCERAII_PERF_OPTIMIZED_BUILD=OFF ;
|
|
|
|
# cmake --build . --target all ;
|
|
|
|
# ls ;
|
|
|
|
# ./test_basic ;
|
|
|
|
# ./test_multithread ;
|
|
|
|
# fi
|
|
|
|
# - cd ..
|