From af523c63d5566bedb71f3b8f3a6cbc5b982cb090 Mon Sep 17 00:00:00 2001 From: Ayke van Laethem Date: Sat, 6 Jul 2019 14:14:46 +0200 Subject: [PATCH] ci: fix cache paths for LLVM source This makes the LLVM source code cacheable again. --- .circleci/config.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index af9e1dff..fc620730 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -44,14 +44,14 @@ commands: steps: - restore_cache: keys: - - llvm-source-8-v4 + - llvm-source-8-v5 - run: name: "Fetch LLVM source" command: make llvm-source - save_cache: - key: llvm-source-8-v4 + key: llvm-source-8-v5 paths: - - llvm + - llvm-project smoketest: steps: - run: make smoketest @@ -169,14 +169,14 @@ commands: HOMEBREW_NO_AUTO_UPDATE=1 brew install qemu - restore_cache: keys: - - llvm-source-8-macos-v4 + - llvm-source-8-macos-v5 - run: name: "Fetch LLVM source" command: make llvm-source - save_cache: - key: llvm-source-8-macos-v4 + key: llvm-source-8-macos-v5 paths: - - llvm + - llvm-project - restore_cache: keys: - llvm-build-8-macos-v5