From 0a953629db77faa2d49a604e02d6e95e432bd575 Mon Sep 17 00:00:00 2001 From: Tian Jin Date: Mon, 23 Dec 2019 17:53:31 -0500 Subject: [PATCH] use sudo --- .circleci/config.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 8cc7122..7cb23b0 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -9,10 +9,10 @@ jobs: - run: name: Installing GCC - command: 'apt-get update && apt-get install -y gcc g++' + command: 'sudo apt-get update && sudo apt-get install -y gcc g++' - run: name: Install CMAKE - command: 'apt-get update && apt-get install -y cmake' + command: 'sudo apt-get update && sudo apt-get install -y cmake' - run: command: gcc --version