From f985065347eaf5d80f262adf442c9a231343699a Mon Sep 17 00:00:00 2001 From: Michael Droettboom Date: Tue, 2 Oct 2018 11:07:41 -0400 Subject: [PATCH] Upgrade C libraries in benchmark job --- .circleci/config.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index aaaa5b9a4..e1b0bda08 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -122,6 +122,14 @@ jobs: - checkout - attach_workspace: at: . + - run: + name: dependencies + command: | + sudo apt-get update + sudo apt-get install -t testing g++-8 + sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-6 60 --slave /usr/bin/g++ g++ /usr/bin/g++-6 + sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-8 80 --slave /usr/bin/g++ g++ /usr/bin/g++-8 + sudo update-alternatives --set gcc /usr/bin/gcc-8 - run: name: benchmark command: |