File tree 1 file changed +14
-1
lines changed
1 file changed +14
-1
lines changed Original file line number Diff line number Diff line change @@ -143,6 +143,12 @@ defaults:
143
143
144
144
linux-steps : &linux-steps
145
145
- checkout
146
+ - run :
147
+ name : Update Git Submodules
148
+ command : |
149
+ git submodule sync
150
+ git submodule update --init --recursive
151
+
146
152
- *environment-info
147
153
- *configure
148
154
# - *upload-hunter-cache
@@ -157,14 +163,21 @@ defaults:
157
163
158
164
mac-steps : &mac-steps
159
165
- checkout
166
+ - run :
167
+ name : Update Git Submodules
168
+ command : |
169
+ git submodule sync
170
+ git submodule update --init --recursive
171
+
160
172
- run :
161
173
name : " Install macOS dependencies"
162
174
# Python3 and requests are needed for Hunter upload.
163
175
command : |
164
- HOMEBREW_NO_AUTO_UPDATE=1 brew install -q cmake ninja git
176
+ brew install -q cmake ninja git
165
177
git clone --depth 1 https://github.com/ethereum/go-ethereum.git
166
178
git clone --depth 1 https://github.com/ethereum/tests.git
167
179
180
+ sudo softwareupdate --install-rosetta
168
181
curl -L https://go.dev/dl/go1.21.8.darwin-amd64.pkg -o go1.21.pkg
169
182
chmod +x go1.21.pkg
170
183
sudo installer -pkg go1.21.pkg -target /
You can’t perform that action at this time.
0 commit comments