Skip to content

Commit f7dfbd3

Browse files
committed
update circle
1 parent ecc479e commit f7dfbd3

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

circle.yml

+13-1
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,12 @@ defaults:
143143
144144
linux-steps: &linux-steps
145145
- checkout
146+
- run:
147+
name: Update Git Submodules
148+
command: |
149+
git submodule sync
150+
git submodule update --init --recursive
151+
146152
- *environment-info
147153
- *configure
148154
# - *upload-hunter-cache
@@ -157,11 +163,17 @@ defaults:
157163

158164
mac-steps: &mac-steps
159165
- checkout
166+
- run:
167+
name: Update Git Submodules
168+
command: |
169+
git submodule sync
170+
git submodule update --init --recursive
171+
160172
- run:
161173
name: "Install macOS dependencies"
162174
# Python3 and requests are needed for Hunter upload.
163175
command: |
164-
HOMEBREW_NO_AUTO_UPDATE=1 brew install -q cmake ninja git
176+
brew install -q cmake ninja git
165177
git clone --depth 1 https://github.com/ethereum/go-ethereum.git
166178
git clone --depth 1 https://github.com/ethereum/tests.git
167179

0 commit comments

Comments
 (0)