Skip to content

🏗 Replace CircleCI's MacOS resource class to macos.m1.medium.gen1 #39970

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 5 additions & 8 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ version: 2.1
orbs:
browser-tools: circleci/[email protected]
codecov: codecov/[email protected]
macos: circleci/[email protected]
node: circleci/[email protected]

push_and_pr_builds: &push_and_pr_builds
Expand Down Expand Up @@ -68,8 +69,8 @@ executors:
resource_class: 2xlarge
macos-medium:
macos:
xcode: 14.3.1
resource_class: macos.x86.medium.gen2
xcode: 15.3.0
resource_class: macos.m1.medium.gen1

commands:
checkout_repo:
Expand Down Expand Up @@ -183,11 +184,6 @@ commands:
- run:
name: '💿 Install Microsoft Edge'
command: ./.circleci/install_microsoft_edge.sh
enable_safari_automation:
steps:
- run:
name: '⚙️ Enable Safari Automation'
command: sudo /usr/bin/safaridriver --enable
store_test_output:
steps:
- store_test_results:
Expand Down Expand Up @@ -409,7 +405,8 @@ jobs:
<<: *test_types_job
steps:
- setup_vm
- enable_safari_automation
- macos/install-rosetta
- macos/add-safari-permissions
- run:
name: '⭐⭐⭐ << parameters.test_type >> Tests (Safari) ⭐⭐⭐'
command: node build-system/pr-check/browser-tests.js --browser=safari --type=<< parameters.test_type >>
Expand Down
Loading