Skip to content

Commit 756ae67

Browse files
authored
Merge pull request #12536 from ethereum/optimize-mac-os-ci-jobs
[CI] Use `large` resource class for macOS and use `-j` without spaces
2 parents 9b52208 + 91f51b7 commit 756ae67

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

.circleci/config.yml

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -358,7 +358,15 @@ defaults:
358358
xcode: "13.2.0"
359359
environment:
360360
TERM: xterm
361-
MAKEFLAGS: -j 5
361+
MAKEFLAGS: -j5
362+
363+
- base_osx_large: &base_osx_large
364+
macos:
365+
xcode: "13.2.0"
366+
resource_class: large
367+
environment:
368+
TERM: xterm
369+
MAKEFLAGS: -j10
362370

363371
- base_ems_large: &base_ems_large
364372
docker:
@@ -794,11 +802,11 @@ jobs:
794802
- gitter_notify_failure_unless_pr
795803

796804
b_osx:
797-
<<: *base_osx
805+
<<: *base_osx_large
798806
environment:
799807
TERM: xterm
800808
CMAKE_BUILD_TYPE: Release
801-
MAKEFLAGS: -j 5
809+
MAKEFLAGS: -j10
802810
steps:
803811
- checkout
804812
- restore_cache:

0 commit comments

Comments
 (0)