Skip to content

Commit b104a1b

Browse files
committed
fixup! [DEBUG] Temporarily disable restoring cache in b_osx
1 parent 1ea9516 commit b104a1b

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

.circleci/config.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -625,6 +625,32 @@ jobs:
625625
MAKEFLAGS: -j 5
626626
steps:
627627
- checkout
628+
- restore_cache:
629+
keys:
630+
- dependencies-osx-{{ arch }}-{{ checksum ".circleci/osx_install_dependencies.sh" }}
631+
# DO NOT EDIT between here and save_cache, but rather edit ./circleci/osx_install_dependencies.sh
632+
# WARNING! If you do edit anything here instead, remember to invalidate the cache manually.
633+
- run:
634+
name: Install build dependencies
635+
command: ./.circleci/osx_install_dependencies.sh
636+
- save_cache:
637+
key: dependencies-osx-{{ arch }}-{{ checksum ".circleci/osx_install_dependencies.sh" }}
638+
paths:
639+
- /usr/local/bin
640+
- /usr/local/sbin
641+
- /usr/local/lib
642+
- /usr/local/include
643+
- /usr/local/Cellar
644+
- /usr/local/Homebrew
645+
- run: *run_build
646+
- store_artifacts: *artifacts_solc
647+
- store_artifacts: *artifacts_tools
648+
- persist_to_workspace:
649+
root: .
650+
paths:
651+
- build/solc/solc
652+
- build/test/soltest
653+
- build/test/tools/solfuzzer
628654

629655
t_osx_soltest:
630656
macos:

0 commit comments

Comments
 (0)