Skip to content

Commit e4626c5

Browse files
committed
Updated snapshots.
1 parent ce74348 commit e4626c5

19 files changed

Lines changed: 190 additions & 323 deletions

File tree

.vortex/installer/tests/Fixtures/handler_process/ciprovider_circleci/.circleci/config.yml

Lines changed: 10 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,6 @@
77
# containers defined in `docker-compose.yml` run on a *remote* Docker server
88
# controlled by CircleCI.
99
# The "runner" container uses Docker client to control the remote Docker server.
10-
#
11-
# Scheduled pipelines:
12-
# The `nightly-db` workflow requires a schedule trigger configured in CircleCI UI.
13-
# Go to Project Settings > Triggers > Add Scheduled Trigger:
14-
# - Trigger name: nightly-db
15-
# - Config source: config.yml
16-
# - Branch: develop
17-
# - Schedule: Every day at 18:00 UTC (or a custom time)
18-
# See https://www.vortextemplate.com/docs/continuous-integration/circleci
1910
version: '2.1'
2011

2112
aliases:
@@ -27,6 +18,9 @@ aliases:
2718
# Replace this key fingerprint with your own and remove this comment.
2819
- &deploy_ssh_fingerprint "SHA256:6d+U5QubT0eAWz+4N2wt+WM2qx6o4cvyvQ6xILETJ84"
2920

21+
# Schedule to run nightly database build (to cache the database for the next day).
22+
- &nightly_db_schedule "0 18 * * *"
23+
3024
# Shared runner container configuration applied to each job.
3125
- &runner_config
3226
working_directory: &working_directory ~/project
@@ -482,9 +476,6 @@ jobs:
482476
workflows:
483477
# Commit workflow. Runs for every commit push to the remote repository.
484478
commit:
485-
when:
486-
not:
487-
equal: [scheduled_pipeline, << pipeline.trigger_source >>]
488479
jobs:
489480
- database:
490481
filters:
@@ -527,11 +518,13 @@ workflows:
527518
only: /^[0-9]+(\.[0-9]+){2}(-rc\.[0-9]+)?$|^[0-9]{4}-[0-9]{2}-[0-9]{2}(\.[0-9]+)?$/
528519

529520
# Nightly database workflow runs overnight to capture fresh database and cache it.
530-
# Requires a "nightly-db" schedule trigger configured in CircleCI UI.
531521
nightly-db:
532-
when:
533-
and:
534-
- equal: [scheduled_pipeline, << pipeline.trigger_source >>]
535-
- equal: ["nightly-db", << pipeline.schedule.name >>]
522+
triggers:
523+
- schedule:
524+
cron: *nightly_db_schedule
525+
filters:
526+
branches:
527+
only:
528+
- develop
536529
jobs:
537530
- database-nightly

.vortex/installer/tests/Fixtures/handler_process/deploy_types_all_circleci/.circleci/config.yml

Lines changed: 10 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,6 @@
77
# containers defined in `docker-compose.yml` run on a *remote* Docker server
88
# controlled by CircleCI.
99
# The "runner" container uses Docker client to control the remote Docker server.
10-
#
11-
# Scheduled pipelines:
12-
# The `nightly-db` workflow requires a schedule trigger configured in CircleCI UI.
13-
# Go to Project Settings > Triggers > Add Scheduled Trigger:
14-
# - Trigger name: nightly-db
15-
# - Config source: config.yml
16-
# - Branch: develop
17-
# - Schedule: Every day at 18:00 UTC (or a custom time)
18-
# See https://www.vortextemplate.com/docs/continuous-integration/circleci
1910
version: '2.1'
2011

2112
aliases:
@@ -27,6 +18,9 @@ aliases:
2718
# Replace this key fingerprint with your own and remove this comment.
2819
- &deploy_ssh_fingerprint "SHA256:6d+U5QubT0eAWz+4N2wt+WM2qx6o4cvyvQ6xILETJ84"
2920

21+
# Schedule to run nightly database build (to cache the database for the next day).
22+
- &nightly_db_schedule "0 18 * * *"
23+
3024
# Shared runner container configuration applied to each job.
3125
- &runner_config
3226
working_directory: &working_directory ~/project
@@ -482,9 +476,6 @@ jobs:
482476
workflows:
483477
# Commit workflow. Runs for every commit push to the remote repository.
484478
commit:
485-
when:
486-
not:
487-
equal: [scheduled_pipeline, << pipeline.trigger_source >>]
488479
jobs:
489480
- database:
490481
filters:
@@ -527,11 +518,13 @@ workflows:
527518
only: /^[0-9]+(\.[0-9]+){2}(-rc\.[0-9]+)?$|^[0-9]{4}-[0-9]{2}-[0-9]{2}(\.[0-9]+)?$/
528519

529520
# Nightly database workflow runs overnight to capture fresh database and cache it.
530-
# Requires a "nightly-db" schedule trigger configured in CircleCI UI.
531521
nightly-db:
532-
when:
533-
and:
534-
- equal: [scheduled_pipeline, << pipeline.trigger_source >>]
535-
- equal: ["nightly-db", << pipeline.schedule.name >>]
522+
triggers:
523+
- schedule:
524+
cron: *nightly_db_schedule
525+
filters:
526+
branches:
527+
only:
528+
- develop
536529
jobs:
537530
- database-nightly

.vortex/installer/tests/Fixtures/handler_process/deploy_types_none_circleci/.circleci/config.yml

Lines changed: 10 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,6 @@
77
# containers defined in `docker-compose.yml` run on a *remote* Docker server
88
# controlled by CircleCI.
99
# The "runner" container uses Docker client to control the remote Docker server.
10-
#
11-
# Scheduled pipelines:
12-
# The `nightly-db` workflow requires a schedule trigger configured in CircleCI UI.
13-
# Go to Project Settings > Triggers > Add Scheduled Trigger:
14-
# - Trigger name: nightly-db
15-
# - Config source: config.yml
16-
# - Branch: develop
17-
# - Schedule: Every day at 18:00 UTC (or a custom time)
18-
# See https://www.vortextemplate.com/docs/continuous-integration/circleci
1910
version: '2.1'
2011

2112
aliases:
@@ -27,6 +18,9 @@ aliases:
2718
# Replace this key fingerprint with your own and remove this comment.
2819
- &deploy_ssh_fingerprint "SHA256:6d+U5QubT0eAWz+4N2wt+WM2qx6o4cvyvQ6xILETJ84"
2920

21+
# Schedule to run nightly database build (to cache the database for the next day).
22+
- &nightly_db_schedule "0 18 * * *"
23+
3024
# Shared runner container configuration applied to each job.
3125
- &runner_config
3226
working_directory: &working_directory ~/project
@@ -424,9 +418,6 @@ jobs:
424418
workflows:
425419
# Commit workflow. Runs for every commit push to the remote repository.
426420
commit:
427-
when:
428-
not:
429-
equal: [scheduled_pipeline, << pipeline.trigger_source >>]
430421
jobs:
431422
- database:
432423
filters:
@@ -440,11 +431,13 @@ workflows:
440431
only: /.*/
441432

442433
# Nightly database workflow runs overnight to capture fresh database and cache it.
443-
# Requires a "nightly-db" schedule trigger configured in CircleCI UI.
444434
nightly-db:
445-
when:
446-
and:
447-
- equal: [scheduled_pipeline, << pipeline.trigger_source >>]
448-
- equal: ["nightly-db", << pipeline.schedule.name >>]
435+
triggers:
436+
- schedule:
437+
cron: *nightly_db_schedule
438+
filters:
439+
branches:
440+
only:
441+
- develop
449442
jobs:
450443
- database-nightly

.vortex/installer/tests/Fixtures/handler_process/deps_updates_provider_ci_circleci/.circleci/config.yml

Lines changed: 10 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,6 @@
77
# containers defined in `docker-compose.yml` run on a *remote* Docker server
88
# controlled by CircleCI.
99
# The "runner" container uses Docker client to control the remote Docker server.
10-
#
11-
# Scheduled pipelines:
12-
# The `nightly-db` workflow requires a schedule trigger configured in CircleCI UI.
13-
# Go to Project Settings > Triggers > Add Scheduled Trigger:
14-
# - Trigger name: nightly-db
15-
# - Config source: config.yml
16-
# - Branch: develop
17-
# - Schedule: Every day at 18:00 UTC (or a custom time)
18-
# See https://www.vortextemplate.com/docs/continuous-integration/circleci
1910
version: '2.1'
2011

2112
aliases:
@@ -27,6 +18,9 @@ aliases:
2718
# Replace this key fingerprint with your own and remove this comment.
2819
- &deploy_ssh_fingerprint "SHA256:6d+U5QubT0eAWz+4N2wt+WM2qx6o4cvyvQ6xILETJ84"
2920

21+
# Schedule to run nightly database build (to cache the database for the next day).
22+
- &nightly_db_schedule "0 18 * * *"
23+
3024
# Shared runner container configuration applied to each job.
3125
- &runner_config
3226
working_directory: &working_directory ~/project
@@ -482,9 +476,6 @@ jobs:
482476
workflows:
483477
# Commit workflow. Runs for every commit push to the remote repository.
484478
commit:
485-
when:
486-
not:
487-
equal: [scheduled_pipeline, << pipeline.trigger_source >>]
488479
jobs:
489480
- database:
490481
filters:
@@ -527,11 +518,13 @@ workflows:
527518
only: /^[0-9]+(\.[0-9]+){2}(-rc\.[0-9]+)?$|^[0-9]{4}-[0-9]{2}-[0-9]{2}(\.[0-9]+)?$/
528519

529520
# Nightly database workflow runs overnight to capture fresh database and cache it.
530-
# Requires a "nightly-db" schedule trigger configured in CircleCI UI.
531521
nightly-db:
532-
when:
533-
and:
534-
- equal: [scheduled_pipeline, << pipeline.trigger_source >>]
535-
- equal: ["nightly-db", << pipeline.schedule.name >>]
522+
triggers:
523+
- schedule:
524+
cron: *nightly_db_schedule
525+
filters:
526+
branches:
527+
only:
528+
- develop
536529
jobs:
537530
- database-nightly

.vortex/installer/tests/Fixtures/handler_process/migration_disabled_circleci/.circleci/config.yml

Lines changed: 10 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,6 @@
77
# containers defined in `docker-compose.yml` run on a *remote* Docker server
88
# controlled by CircleCI.
99
# The "runner" container uses Docker client to control the remote Docker server.
10-
#
11-
# Scheduled pipelines:
12-
# The `nightly-db` workflow requires a schedule trigger configured in CircleCI UI.
13-
# Go to Project Settings > Triggers > Add Scheduled Trigger:
14-
# - Trigger name: nightly-db
15-
# - Config source: config.yml
16-
# - Branch: develop
17-
# - Schedule: Every day at 18:00 UTC (or a custom time)
18-
# See https://www.vortextemplate.com/docs/continuous-integration/circleci
1910
version: '2.1'
2011

2112
aliases:
@@ -27,6 +18,9 @@ aliases:
2718
# Replace this key fingerprint with your own and remove this comment.
2819
- &deploy_ssh_fingerprint "SHA256:6d+U5QubT0eAWz+4N2wt+WM2qx6o4cvyvQ6xILETJ84"
2920

21+
# Schedule to run nightly database build (to cache the database for the next day).
22+
- &nightly_db_schedule "0 18 * * *"
23+
3024
# Shared runner container configuration applied to each job.
3125
- &runner_config
3226
working_directory: &working_directory ~/project
@@ -482,9 +476,6 @@ jobs:
482476
workflows:
483477
# Commit workflow. Runs for every commit push to the remote repository.
484478
commit:
485-
when:
486-
not:
487-
equal: [scheduled_pipeline, << pipeline.trigger_source >>]
488479
jobs:
489480
- database:
490481
filters:
@@ -527,11 +518,13 @@ workflows:
527518
only: /^[0-9]+(\.[0-9]+){2}(-rc\.[0-9]+)?$|^[0-9]{4}-[0-9]{2}-[0-9]{2}(\.[0-9]+)?$/
528519

529520
# Nightly database workflow runs overnight to capture fresh database and cache it.
530-
# Requires a "nightly-db" schedule trigger configured in CircleCI UI.
531521
nightly-db:
532-
when:
533-
and:
534-
- equal: [scheduled_pipeline, << pipeline.trigger_source >>]
535-
- equal: ["nightly-db", << pipeline.schedule.name >>]
522+
triggers:
523+
- schedule:
524+
cron: *nightly_db_schedule
525+
filters:
526+
branches:
527+
only:
528+
- develop
536529
jobs:
537530
- database-nightly

.vortex/installer/tests/Fixtures/handler_process/migration_enabled_circleci/.circleci/config.yml

Lines changed: 10 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,6 @@
77
# containers defined in `docker-compose.yml` run on a *remote* Docker server
88
# controlled by CircleCI.
99
# The "runner" container uses Docker client to control the remote Docker server.
10-
#
11-
# Scheduled pipelines:
12-
# The `nightly-db` workflow requires a schedule trigger configured in CircleCI UI.
13-
# Go to Project Settings > Triggers > Add Scheduled Trigger:
14-
# - Trigger name: nightly-db
15-
# - Config source: config.yml
16-
# - Branch: develop
17-
# - Schedule: Every day at 18:00 UTC (or a custom time)
18-
# See https://www.vortextemplate.com/docs/continuous-integration/circleci
1910
version: '2.1'
2011

2112
aliases:
@@ -27,6 +18,9 @@ aliases:
2718
# Replace this key fingerprint with your own and remove this comment.
2819
- &deploy_ssh_fingerprint "SHA256:6d+U5QubT0eAWz+4N2wt+WM2qx6o4cvyvQ6xILETJ84"
2920

21+
# Schedule to run nightly database build (to cache the database for the next day).
22+
- &nightly_db_schedule "0 18 * * *"
23+
3024
# Shared runner container configuration applied to each job.
3125
- &runner_config
3226
working_directory: &working_directory ~/project
@@ -491,9 +485,6 @@ jobs:
491485
workflows:
492486
# Commit workflow. Runs for every commit push to the remote repository.
493487
commit:
494-
when:
495-
not:
496-
equal: [scheduled_pipeline, << pipeline.trigger_source >>]
497488
jobs:
498489
- database:
499490
filters:
@@ -536,11 +527,13 @@ workflows:
536527
only: /^[0-9]+(\.[0-9]+){2}(-rc\.[0-9]+)?$|^[0-9]{4}-[0-9]{2}-[0-9]{2}(\.[0-9]+)?$/
537528

538529
# Nightly database workflow runs overnight to capture fresh database and cache it.
539-
# Requires a "nightly-db" schedule trigger configured in CircleCI UI.
540530
nightly-db:
541-
when:
542-
and:
543-
- equal: [scheduled_pipeline, << pipeline.trigger_source >>]
544-
- equal: ["nightly-db", << pipeline.schedule.name >>]
531+
triggers:
532+
- schedule:
533+
cron: *nightly_db_schedule
534+
filters:
535+
branches:
536+
only:
537+
- develop
545538
jobs:
546539
- database-nightly

.vortex/installer/tests/Fixtures/handler_process/timezone_circleci/.circleci/config.yml

Lines changed: 10 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,6 @@
77
# containers defined in `docker-compose.yml` run on a *remote* Docker server
88
# controlled by CircleCI.
99
# The "runner" container uses Docker client to control the remote Docker server.
10-
#
11-
# Scheduled pipelines:
12-
# The `nightly-db` workflow requires a schedule trigger configured in CircleCI UI.
13-
# Go to Project Settings > Triggers > Add Scheduled Trigger:
14-
# - Trigger name: nightly-db
15-
# - Config source: config.yml
16-
# - Branch: develop
17-
# - Schedule: Every day at 18:00 UTC (or a custom time)
18-
# See https://www.vortextemplate.com/docs/continuous-integration/circleci
1910
version: '2.1'
2011

2112
aliases:
@@ -27,6 +18,9 @@ aliases:
2718
# Replace this key fingerprint with your own and remove this comment.
2819
- &deploy_ssh_fingerprint "SHA256:6d+U5QubT0eAWz+4N2wt+WM2qx6o4cvyvQ6xILETJ84"
2920

21+
# Schedule to run nightly database build (to cache the database for the next day).
22+
- &nightly_db_schedule "0 18 * * *"
23+
3024
# Shared runner container configuration applied to each job.
3125
- &runner_config
3226
working_directory: &working_directory ~/project
@@ -482,9 +476,6 @@ jobs:
482476
workflows:
483477
# Commit workflow. Runs for every commit push to the remote repository.
484478
commit:
485-
when:
486-
not:
487-
equal: [scheduled_pipeline, << pipeline.trigger_source >>]
488479
jobs:
489480
- database:
490481
filters:
@@ -527,11 +518,13 @@ workflows:
527518
only: /^[0-9]+(\.[0-9]+){2}(-rc\.[0-9]+)?$|^[0-9]{4}-[0-9]{2}-[0-9]{2}(\.[0-9]+)?$/
528519

529520
# Nightly database workflow runs overnight to capture fresh database and cache it.
530-
# Requires a "nightly-db" schedule trigger configured in CircleCI UI.
531521
nightly-db:
532-
when:
533-
and:
534-
- equal: [scheduled_pipeline, << pipeline.trigger_source >>]
535-
- equal: ["nightly-db", << pipeline.schedule.name >>]
522+
triggers:
523+
- schedule:
524+
cron: *nightly_db_schedule
525+
filters:
526+
branches:
527+
only:
528+
- develop
536529
jobs:
537530
- database-nightly

0 commit comments

Comments
 (0)