Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
clang-format broke gcc builds, damnit
[simgrid.git] / circle.yml
1 # This is the configuration file for the https://circleci.com/ continuous integration server
2 #
3 # Copyright (C) 2017. The SimGrid team. All rights reserved.
4
5 # This program is free software; you can redistribute it and/or modify it
6 # under the terms of the license (GNU LGPL) which comes with this package.
7
8 machine:
9   python:
10       version: 3.6.0
11
12 dependencies:
13   pre:
14     - sudo apt-get update; sudo apt-get install cmake valgrind default-jdk gfortran libboost-dev libboost-all-dev
15
16 test:
17   pre:
18     - mkdir _build
19     - pushd _build ; cmake -Denable_documentation=OFF -Denable_coverage=ON -Denable_java=ON -Denable_model-checking=OFF -Denable_lua=OFF -Denable_compile_optimizations=ON -Denable_smpi=ON -Denable_smpi_MPICH3_testsuite=OFF -Denable_compile_warnings=ON ..
20   override:
21     - pushd _build ; make -j4 && ctest -j4 --output-on-failure