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: jekyll/_cci2/faq.md
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -16,11 +16,11 @@ order: 1
16
16
17
17
-**Cloud** - CircleCI manages the setup, infrastructure, security and maintenance of your services. You get instant access to new feature releases and automatic upgrades, alleviating the need for manual work on an internal system.
18
18
19
-
-**Server** - You install and manage CircleCI, through a service like AWS, behind a firewall that your team sets up and maintains according to your datacenter policy. You have full administrative control for complete customization and manage upgrades as new versions are released.
19
+
-**Server** - You install and manage CircleCI, through a service like AWS, behind a firewall that your team sets up and maintains according to your datacenter policy. You have full administrative control for complete customization and manage upgrades as new versions are released.
20
20
21
21
## Why did you change the name from CircleCI Enterprise?
22
22
23
-
The term Enterprise was used to refer to the behind-the-firewall option. However, this nomenclature was confusing for customers and for CircleCI employees.
23
+
The term Enterprise was used to refer to the behind-the-firewall option. However, this nomenclature was confusing for customers and for CircleCI employees.
24
24
25
25
CircleCI is one product that can be accessed through our cloud service, installed behind your firewall, or in a hybrid approach, depending on your needs.
26
26
@@ -168,7 +168,7 @@ Not yet, but we are working on that functionality.
168
168
Not yet, but we are working on that functionality.
169
169
170
170
### Can I use `store_test_results` with Workflows?
171
-
You can use `store_test_results` in order to populate your builds' Test Summary section with your test results information, however [timing-based test-splitting]({{ site.baseurl }}/2.0/parallelism-faster-jobs/#splitting-patterns) will not work. This is next up on our roadmap to fix. Test timings data is available for 2.0 but not with Workflows.
171
+
You can use `store_test_results` in order to populate your builds' Test Summary section with your test results information and for [timing-based test-splitting]({{ site.baseurl }}/2.0/parallelism-faster-jobs/#splitting-patterns). Test timings data is available for 2.0 with Workflows, using data from a job with the same name going back 50 builds.
172
172
173
173
### Can I use Workflows with CircleCI 1.0?
174
174
@@ -195,7 +195,7 @@ No.
195
195
We do not support fork PR’s yet.
196
196
197
197
### Can workflows be scheduled to run at a specific time of day?
198
-
Yes, for the CircleCI hosted application. For example, to run a workflow at 4 PM use `"0 16 * * *"` as the value for the `cron:` key. Times are interpreted in the UTC time zone. Next on the roadmap is to enable scheduled workflows in an installable CircleCI release.
198
+
Yes, for the CircleCI hosted application. For example, to run a workflow at 4 PM use `"0 16 * * *"` as the value for the `cron:` key. Times are interpreted in the UTC time zone. Next on the roadmap is to enable scheduled workflows in an installable CircleCI release.
199
199
200
200
### What time zone is used for schedules?
201
201
Coordinated Universal Time (UTC) is the time zone in which schedules are interpreted.
Copy file name to clipboardExpand all lines: jekyll/_cci2/parallelism-faster-jobs.md
-2Lines changed: 0 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -69,8 +69,6 @@ When the items are filepaths, the `filesize` option will weight the split by fil
69
69
70
70
The `timings` split type uses historical timing data to weight the split. CircleCI automatically makes timing data from previous successful runs available inside your container in a default location so the CLI tool can discover them (`$CIRCLE_INTERNAL_TASK_DATA/circle-test-results`). Make sure you are using the [`store_test_results` key]({{ site.baseurl }}/2.0/configuration-reference/#store_test_results) to save your test timing data, otherwise there will not be any historical timing data available.
71
71
72
-
***Note:** timing-based test splitting is not currently compatible with Workflows.*
73
-
74
72
When splitting by `timings`, the tool will assume it’s splitting filenames. If you’re splitting classnames, you’ll need to specify that with the `--timings-type` flag, as in the following examples:
0 commit comments