From: Martin Quinson Date: Tue, 12 Jun 2018 15:43:43 +0000 (+0200) Subject: circleci: simplify the build file X-Git-Tag: v3.20~109 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/2c4ac55bae02934d6a581d020bffb125710e3090 circleci: simplify the build file halte au jeunisme. --- diff --git a/.circleci/config.yml b/.circleci/config.yml index e28a06b183..1026943e14 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -16,11 +16,8 @@ jobs: steps: - checkout - run: - name: Build da stuff + name: Configure, build and test da stuff command: | mkdir _build - 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 .. - - run: - name: Test da stuff - command: | + 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 .. pushd _build ; make -j4 && ctest -j4 --output-on-failure