Skip to content
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,8 @@ version: 2.1
jobs: # a basic unit of work in a run
test: # your job name
macos:
xcode: 14.2.0 # indicate your selected version of Xcode
xcode: 26.3.0 # indicate your selected version of Xcode
resource_class: m4pro.medium # specify a resource class (e.g. m4pro.medium or m4pro.large)
steps: # a series of commands to run
- checkout # pull down code from your version control system.
- run:
Expand All @@ -65,7 +66,8 @@ jobs: # a basic unit of work in a run

build:
macos:
xcode: 14.2.0 # indicate your selected version of Xcode
xcode: 26.3.0 # indicate your selected version of Xcode
resource_class: m4pro.medium # specify a resource class (e.g. m4pro.medium or m4pro.large)
steps:
- checkout
- run:
Expand Down