From a4183120e2870f2cb85b512c5fe004f551caa11b Mon Sep 17 00:00:00 2001 From: Pranav Gaddamadugu <23022326+d0cd@users.noreply.github.com> Date: Mon, 7 Oct 2024 17:32:57 -0700 Subject: [PATCH] Try different submodule update --- .circleci/config.yml | 21 ++++++++++++--------- 1 file changed, 12 insertions(+), 9 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index e9d700ee7c..641da3eded 100755 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -53,12 +53,13 @@ jobs: - image: cimg/rust:1.76 resource_class: xlarge steps: - - checkout: - submodules: true - submodule_recursive: true + - checkout - install_rust_nightly - setup_environment: cache_key: leo-fmt-cache + - run: + name: Update Submodules + command: git submodule update --init --recursive - run: name: Check style no_output_timeout: 35m @@ -71,11 +72,12 @@ jobs: - image: cimg/rust:1.76 resource_class: xlarge steps: - - checkout: - submodules: true - submodule_recursive: true + - checkout - setup_environment: cache_key: leo-clippy-cache + - run: + name: Update Submodules + command: git submodule update --init --recursive - run: name: Clippy no_output_timeout: 35m @@ -90,11 +92,12 @@ jobs: - image: cimg/rust:1.76 resource_class: xlarge steps: - - checkout: - submodules: true - submodule_recursive: true + - checkout - setup_environment: cache_key: leo-executable-cache + - run: + name: Update Submodules + command: git submodule update --init --recursive - run: name: Build and install Leo no_output_timeout: 30m