From d601a34afadf0c61f39fd19535f0a7c343aa0cb3 Mon Sep 17 00:00:00 2001 From: Tian Jin Date: Mon, 23 Dec 2019 17:47:37 -0500 Subject: [PATCH] install gcc, cmake --- .circleci/config.yml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index cd986cd..d818425 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -8,7 +8,17 @@ jobs: - checkout - run: - command: which git + 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' + + - run: + command: gcc --version - run: name: Set up MLIR.