File tree Expand file tree Collapse file tree 1 file changed +26
-0
lines changed Expand file tree Collapse file tree 1 file changed +26
-0
lines changed Original file line number Diff line number Diff 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 :
You can’t perform that action at this time.
0 commit comments