Skip to content

Commit f86c550

Browse files
Merge branch 'main' into DOCSS-1935-deploy-marker-screenshots
2 parents 45ab477 + 4e50f3d commit f86c550

16 files changed

+228
-69
lines changed
230 KB
Loading
243 KB
Loading
218 KB
Loading
241 KB
Loading
208 KB
Loading

docs/guides/modules/ROOT/nav.adoc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -291,6 +291,7 @@
291291
*** xref:integration:authorize-google-cloud-sdk.adoc[Authorize Google Cloud SDK]
292292
293293
* Developer toolkit
294+
** xref:toolkit:how-to-find-ids.adoc[How to find IDs]
294295
** AI features
295296
*** xref:toolkit:using-the-circleci-mcp-server.adoc[Using the CircleCI MCP server]
296297
*** xref:toolkit:intelligent-summaries.adoc[Intelligent summaries]

docs/guides/modules/ROOT/partials/app-navigation/steps-to-project-settings.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
. In the link:https://app.circleci.com[CircleCI web app], select your org from the org cards on your user homepage.
1+
. In the link:https://app.circleci.com[CircleCI web app, window=_blank], select your org from the org cards on your user homepage.
22
. Select **Projects** from the sidebar and locate your project from the list. You can use the search to help.
33
. Select the ellipsis image:guides:ROOT:icons/more.svg[more icon, role="no-border"] next to your project and select **Project Settings**.
44
+

docs/guides/modules/migrate/pages/migrating-from-aws.adoc

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ The AWS CodeBuild and CircleCI configurations will be different. It may be helpf
5858
5959
include::ROOT:partial$notes/docker-auth.adoc[]
6060
61-
[table-scroll]
61+
[.table-scroll]
6262
--
6363
[cols="1,1", options="header"]
6464
|===
@@ -67,7 +67,7 @@ include::ROOT:partial$notes/docker-auth.adoc[]
6767
2+| Define a job that executes a single build step.
6868
6969
a|
70-
[source,yaml,role="no-numbers"]
70+
[source,yaml]
7171
----
7272
phases:
7373
build:
@@ -76,7 +76,7 @@ phases:
7676
----
7777
7878
a|
79-
[source,yaml,role="no-numbers"]
79+
[source,yaml]
8080
----
8181
jobs:
8282
job1:
@@ -88,7 +88,7 @@ jobs:
8888
2+| Specify a Docker image to use for a job.
8989
9090
a|
91-
[source,yaml,role="no-numbers"]
91+
[source,yaml]
9292
----
9393
phases:
9494
install:
@@ -97,7 +97,7 @@ phases:
9797
----
9898
9999
a|
100-
[source,yaml,role="no-numbers"]
100+
[source,yaml]
101101
----
102102
jobs:
103103
job1:
@@ -108,7 +108,7 @@ jobs:
108108
2+| Define a multi-stage build pipeline. Job1 and Job2 run concurrently. Once they are done, Job3 runs. Once Job3 is done, Job4 runs. An AWS CodeBuild project runs all commands sequentially. If you are running concurrent commands, you are probably using CodePipeline and multiple CodeBuild projects.
109109
110110
a|
111-
[source,yaml,role="no-numbers"]
111+
[source,yaml]
112112
----
113113
# CodePipeline Project 1
114114
phases:
@@ -136,7 +136,7 @@ phases:
136136
----
137137
138138
a|
139-
[source,yaml,role="no-numbers"]
139+
[source,yaml]
140140
----
141141
version: 2.1
142142
jobs:
@@ -170,7 +170,7 @@ workflows:
170170
2+| Execute jobs on multiple platforms. An AWS CodePipeline project can target a single platform only. If you are targeting multiple platforms, you’re probably using CodePipeline and multiple CodeBuild projects. CircleCI provides executors for Docker, Linux and macOS that can be combined in a single build definition.
171171
172172
a|
173-
[source,yaml,role="no-numbers"]
173+
[source,yaml]
174174
----
175175
# Environments are selected in the CodeBuild
176176
# web console or defined in a project
@@ -191,7 +191,7 @@ a|
191191
----
192192
193193
a|
194-
[source,yaml,role="no-numbers"]
194+
[source,yaml]
195195
----
196196
jobs:
197197
ubuntuJob:
@@ -214,7 +214,7 @@ jobs:
214214
2+| Cache dependencies.
215215
216216
a|
217-
[source,yaml,role="no-numbers"]
217+
[source,yaml]
218218
----
219219
# If custom cache is enabled in the web
220220
# console, CLI or CloudFormation, cache
@@ -229,9 +229,8 @@ cache:
229229
paths:
230230
- 'node_modules/**/*'
231231
----
232-
233232
a|
234-
[source,yaml,role="no-numbers"]
233+
[source,yaml]
235234
----
236235
jobs:
237236
job1:
@@ -251,6 +250,7 @@ jobs:
251250
|===
252251
--
253252
253+
254254
For larger and more complex build files, we recommend moving over the build steps in phases until you get comfortable with the CircleCI platform. We recommend this order:
255255
256256
. Execution of shell scripts and Docker compose files

docs/guides/modules/migrate/pages/migrating-from-azuredevops.adoc

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ include::ROOT:partial$notes/docker-auth.adoc[]
7474
2+| Define a job that executes a single build step.
7575

7676
a|
77-
[source,yaml,role="no-numbers"]
77+
[source,yaml]
7878
----
7979
jobs:
8080
- job: job1
@@ -84,7 +84,7 @@ jobs:
8484
----
8585

8686
a|
87-
[source,yaml,role="no-numbers"]
87+
[source,yaml]
8888
----
8989
jobs:
9090
job1:
@@ -96,7 +96,7 @@ jobs:
9696
2+| Specify a Docker image to use for a job.
9797

9898
a|
99-
[source,yaml,role="no-numbers"]
99+
[source,yaml]
100100
----
101101
jobs:
102102
- job: job1
@@ -105,7 +105,7 @@ jobs:
105105
----
106106

107107
a|
108-
[source,yaml,role="no-numbers"]
108+
[source,yaml]
109109
----
110110
jobs:
111111
job1:
@@ -116,7 +116,7 @@ jobs:
116116
2+| Define a multi-stage build pipeline. Job1 and Job2 run in concurrently. Once they are done, Job3 runs. Once Job3 is done, Job4 runs.
117117

118118
a|
119-
[source, yaml,role="no-numbers"]
119+
[source, yaml]
120120
----
121121
stages:
122122
- stage: build
@@ -140,7 +140,7 @@ stages:
140140
----
141141

142142
a|
143-
[source, yaml,role="no-numbers"]
143+
[source, yaml]
144144
----
145145
version: 2.1
146146
jobs:
@@ -174,7 +174,7 @@ workflows:
174174
2+| Execute jobs on multiple platforms. Azure DevOps uses pools and demands to identify build runners. CircleCI provides executors for Docker, Linux and macOS.
175175

176176
a|
177-
[source, yaml,role="no-numbers"]
177+
[source, yaml]
178178
----
179179
jobs:
180180
- job: ubuntuJob
@@ -192,7 +192,7 @@ jobs:
192192
----
193193
194194
a|
195-
[source, yaml,role="no-numbers"]
195+
[source, yaml]
196196
----
197197
jobs:
198198
ubuntuJob:

docs/guides/modules/migrate/pages/migrating-from-buildkite.adoc

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -67,14 +67,14 @@ include::ROOT:partial$notes/docker-auth.adoc[]
6767
2+| Define a job that executes a single build step.
6868
6969
a|
70-
[source,yaml,role="no-numbers"]
70+
[source,yaml]
7171
----
7272
steps:
7373
- command: 'execute-script-for-job1.sh'
7474
----
7575
7676
a|
77-
[source,yaml,role="no-numbers"]
77+
[source,yaml]
7878
----
7979
jobs:
8080
job1:
@@ -86,7 +86,7 @@ jobs:
8686
2+| Specify a Docker image to use for a job.
8787
8888
a|
89-
[source,yaml,role="no-numbers"]
89+
[source,yaml]
9090
----
9191
steps:
9292
- label: 'job1'
@@ -97,7 +97,7 @@ steps:
9797
----
9898
9999
a|
100-
[source,yaml,role="no-numbers"]
100+
[source,yaml]
101101
----
102102
jobs:
103103
job1:
@@ -109,7 +109,7 @@ jobs:
109109
2+| Define a multi-stage build pipeline. Job1 and Job2 run concurrently. Once they are done, Job3 runs. Once Job3 is done, Job4 runs.
110110
111111
a|
112-
[source,yaml,role="no-numbers"]
112+
[source,yaml]
113113
----
114114
steps:
115115
- label: 'job1'
@@ -130,7 +130,7 @@ steps:
130130
----
131131
132132
a|
133-
[source,yaml,role="no-numbers"]
133+
[source,yaml]
134134
----
135135
version: 2.1
136136
jobs:
@@ -164,7 +164,7 @@ workflows:
164164
2+| Execute jobs on multiple platforms. Buildkite uses tags to identify build agents. CircleCI provides executors for Docker, Linux and macOS.
165165
166166
a|
167-
[source,yaml,role="no-numbers"]
167+
[source,yaml]
168168
----
169169
steps:
170170
- label: 'ubuntuJob'
@@ -180,7 +180,7 @@ steps:
180180
----
181181
182182
a|
183-
[source,yaml,role="no-numbers"]
183+
[source,yaml]
184184
----
185185
jobs:
186186
ubuntuJob:

0 commit comments

Comments
 (0)