From 0c0915d45c89b117752c211e10325f48c23a95c6 Mon Sep 17 00:00:00 2001 From: sebcrozet Date: Sun, 5 Apr 2020 19:46:45 +0200 Subject: [PATCH] CI: install cmake for lapack compilation. --- .circleci/config.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 33df2d02..e1191f3a 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -24,6 +24,8 @@ jobs: executor: rust-executor steps: - checkout + - run: apt-get update + - run: apt-get install -y cmake - run: name: build --no-default-feature command: cargo build --no-default-features;