From db4afef879c4cb716e49712a5471c7a702cc4254 Mon Sep 17 00:00:00 2001 From: Tian Jin Date: Mon, 23 Dec 2019 17:51:52 -0500 Subject: [PATCH] try without installing sudo --- .circleci/config.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index d818425..8cc7122 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -7,15 +7,12 @@ jobs: steps: - checkout - - run: - name: Installing SUDO - command: 'apt-get update && apt-get install -y sudo && rm -rf /var/lib/apt/lists/*' - run: name: Installing GCC command: 'apt-get update && apt-get install -y gcc g++' - run: name: Install CMAKE - command: 'apt-get update && sudo apt-get install -y cmake' + command: 'apt-get update && apt-get install -y cmake' - run: command: gcc --version