From 3fca27097e56be5a344481ad6ae4afe4a8522b89 Mon Sep 17 00:00:00 2001 From: Arash Partow Date: Tue, 8 Dec 2020 16:34:54 +1100 Subject: [PATCH] Update config.yml --- .circleci/config.yml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 647143d..a0cba13 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -6,7 +6,8 @@ jobs: - image: gcc:6 steps: - checkout - - run: make all -j 4 + - run: c++ --version + - run: make all -j 2 - run: ./exprtk_test build_gcc_7: @@ -14,7 +15,8 @@ jobs: - image: gcc:7 steps: - checkout - - run: make all -j 4 + - run: c++ --version + - run: make all -j 2 - run: ./exprtk_test build_gcc_latest: @@ -22,7 +24,8 @@ jobs: - image: gcc:latest steps: - checkout - - run: make all -j 4 + - run: c++ --version + - run: make all -j 2 - run: ./exprtk_test workflows: @@ -31,4 +34,4 @@ workflows: jobs: - build_gcc_6 - build_gcc_7 - - build_gcc_latest \ No newline at end of file + - build_gcc_latest