From c2cfb71dce4d514ff79ec98af46984b543c6f49e Mon Sep 17 00:00:00 2001 From: hathach Date: Tue, 21 May 2024 12:11:08 +0700 Subject: [PATCH] circle ci remove deps caching to reduce storage credit --- .circleci/config.yml | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 2d4532aee..5cbe3a171 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -44,30 +44,10 @@ commands: family: type: string steps: - - run: - name: Make deps cache key - command: | - python tools/get_deps.py --print > deps_key - - restore_cache: - name: Restore Dependencies Cache - key: deps-{{ checksum "deps_key" }} - paths: - - lib/CMSIS_5 - - lib/FreeRTOS-Kernel - - lib/lwip - - tools/uf2 - run: name: Get Dependencies command: | python tools/get_deps.py << parameters.family >> - - save_cache: - name: Save Dependencies Cache - key: deps-{{ checksum "deps_key" }} - paths: - - lib/CMSIS_5 - - lib/FreeRTOS-Kernel - - lib/lwip - - tools/uf2 jobs: arm-clang: