You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/examples/ios-continuous-integration-with-xcode.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ Xcode that run on iOS, macOS, watchOS, or tvOS.
9
9
10
10
Semaphore supports building, testing, and deploying Swift, Objective-C, and
11
11
React Native projects. Projects can be built with
12
-
[Xcode 14][macos-xcode14] running on a macOS `a1-standard-4`
12
+
[Xcode 15][macos-xcode15] running on a macOS `a1-standard-4`
13
13
or higher [machine type][machine-types].
14
14
15
15
> **WARNING: The macOS Xcode 14 OS image is now deprecated. Please update to the newer [macOS Xcode 15](https://docs.semaphoreci.com/ci-cd-environment/macos-xcode-15-image/) image.**
@@ -69,7 +69,7 @@ name: Tallest Towers
69
69
agent:
70
70
machine:
71
71
type: a1-standard-4
72
-
os_image: macos-xcode14
72
+
os_image: macos-xcode15
73
73
74
74
# Blocks are the heart of a pipeline and are executed sequentially. Each block
75
75
# has a task that defines one or more parallel jobs. Jobs define commands that
@@ -177,13 +177,13 @@ them. For example, you might have a build phase and a delivery phase.
177
177
The agent defines the environment in which your CI runs. It is a combination of
178
178
a machine type and an operating system image. For a project built with Xcode, you
179
179
must use one of the Apple [machine types][machine-types], coupled with a macOS
180
-
image running [Xcode 14][macos-xcode14].
180
+
image running [Xcode 15][macos-xcode15].
181
181
182
182
```yaml
183
183
agent:
184
184
machine:
185
185
type: a1-standard-4
186
-
os_image: macos-xcode14
186
+
os_image: macos-xcode15
187
187
```
188
188
189
189
### Defining blocks
@@ -253,7 +253,7 @@ information on the exact functionality of `cache` can be found in
253
253
### Selecting an Xcode version
254
254
255
255
You can find the list of available versions of Xcode in the
256
-
[Xcode 14][macos-xcode14] image references.
256
+
[Xcode 14][macos-xcode15] image references.
257
257
Select the desired version for your project with `xcversion`.
258
258
259
259
``` yaml
@@ -375,7 +375,7 @@ yourself. Here’s how to build the demo project with your own account:
0 commit comments