From 31193a73a4353b4112eeb16cb3b91ec6318d2be0 Mon Sep 17 00:00:00 2001 From: Jay Zhuang Date: Thu, 15 Jul 2021 13:36:48 -0700 Subject: [PATCH] Add missing steps for cmake build (#8524) Summary: Some cmake and test configuration are set in pre-steps enviroment variables. Add the missing steps. Pull Request resolved: https://github.com/facebook/rocksdb/pull/8524 Test Plan: CI pass Reviewed By: siying Differential Revision: D29682731 Pulled By: jay-zhuang fbshipit-source-id: afda1acf6a7b76989db450442b0b27f387388b9d --- .circleci/config.yml | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 6fb7e1d92..2c5612c0b 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -311,7 +311,7 @@ jobs: image: ubuntu-1604:202104-01 resource_class: 2xlarge steps: - - checkout # check out the code in the project directory + - pre-steps - install-gflags - upgrade-cmake - run: (mkdir build && cd build && cmake -DWITH_GFLAGS=1 .. && make V=1 -j20 && ctest -j20) | .circleci/cat_ignore_eagain @@ -322,7 +322,7 @@ jobs: image: ubuntu-2004:202104-01 resource_class: 2xlarge steps: - - checkout # check out the code in the project directory + - pre-steps - install-gflags - install-benchmark - run: (mkdir build && cd build && cmake -DWITH_GFLAGS=1 -DWITH_BENCHMARK=1 .. && make V=1 -j20 && ctest -j20 && make microbench) | .circleci/cat_ignore_eagain @@ -748,12 +748,6 @@ workflows: name: "build-windows-vs2017" vs_year: "2017" cmake_generator: "Visual Studio 15 Win64" -# build-windows-vs2015: -# jobs: -# - build-windows: -# name: "build-windows-vs2015" -# vs_year: "2015" -# cmake_generator: "Visual Studio 14 Win64" build-java: jobs: - build-linux-java