Skip to content

Commit f1f1064

Browse files
authored
chore: CircleCI updates (#33896)
1 parent e98e4e1 commit f1f1064

File tree

1 file changed

+8
-68
lines changed

1 file changed

+8
-68
lines changed

.circleci/config.yml

+8-68
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ executors:
77
parameters:
88
image:
99
type: string
10-
default: "14.17.0"
10+
default: "14.15.0"
1111
docker:
1212
- image: cimg/node:<< parameters.image >>
1313
environment:
@@ -63,7 +63,6 @@ aliases:
6363
branches:
6464
ignore:
6565
- /docs.+/
66-
- /blog.+/
6766

6867
test_template: &test_template
6968
parallelism: 4
@@ -101,7 +100,6 @@ aliases:
101100
ignore:
102101
- master
103102
- /docs.+/
104-
- /blog.+/
105103
requires:
106104
- lint
107105
- typecheck
@@ -231,19 +229,10 @@ jobs:
231229
- run: yarn check-repo-fields
232230

233231
unit_tests_node14:
232+
# GATSBY_EXPERIMENTAL_LMDB_INDEXES is not activated yet
234233
executor:
235234
name: node
236-
image: "14.17.0"
237-
<<: *test_template
238-
239-
unit_tests_node14_lmdb_store:
240-
executor:
241-
name: node
242-
image: "14.17.0"
243-
environment:
244-
GATSBY_EXPERIMENTAL_LMDB_STORE: 1
245-
GATSBY_EXPERIMENTAL_LMDB_INDEXES: 1
246-
GATSBY_EXPERIMENTAL_PARALLEL_QUERY_RUNNING: 1
235+
image: "14.15.0"
247236
<<: *test_template
248237

249238
integration_tests_gatsby_source_wordpress:
@@ -494,32 +483,7 @@ jobs:
494483
- run: git config --global user.name "GatsbyJS Bot"
495484
- run: git config --global user.email "[email protected]"
496485
- run: node scripts/gatsby-changelog-generator/update-and-open-pr.js
497-
498-
update_i18n_source:
499-
executor: node
500-
steps:
501-
- checkout
502-
- run: git config --global user.name "GatsbyJS Bot"
503-
- run: git config --global user.email "[email protected]"
504-
- run:
505-
command: yarn
506-
working_directory: ~/project/scripts/i18n
507-
- run:
508-
command: yarn run update-source
509-
working_directory: ~/project/scripts/i18n
510-
511-
sync_translation_repo:
512-
executor: node
513-
steps:
514-
- checkout
515-
- run: git config --global user.name "GatsbyJS Bot"
516-
- run: git config --global user.email "[email protected]"
517-
- run:
518-
command: yarn
519-
working_directory: ~/project/scripts/i18n
520-
- run:
521-
command: yarn run-all sync
522-
working_directory: ~/project/scripts/i18n
486+
- run: yarn format:other
523487

524488
windows_unit_tests:
525489
parallelism: 4
@@ -539,11 +503,11 @@ jobs:
539503

540504
- <<: *attach_to_bootstrap
541505
- run:
542-
name: Install node 14.17 and yarn
506+
name: Install node 14.15.0 and yarn
543507
command: |
544-
nvm install 14.17.0
545-
nvm alias default 14.17.0
546-
nvm use 14.17.0
508+
nvm install 14.15.0
509+
nvm alias default 14.15.0
510+
nvm use 14.15.0
547511
choco install yarn
548512
- run:
549513
name: Rebuild packages for windows
@@ -585,17 +549,6 @@ jobs:
585549
workflows:
586550
version: 2
587551

588-
weekly-i18n-sync:
589-
triggers:
590-
- schedule:
591-
cron: "0 1 * * 6"
592-
filters:
593-
branches:
594-
only:
595-
- master
596-
jobs:
597-
- sync_translation_repo
598-
599552
nightly-react-next:
600553
triggers:
601554
- schedule:
@@ -669,14 +622,6 @@ workflows:
669622
- lint
670623
- typecheck
671624
- bootstrap
672-
- unit_tests_node14_lmdb_store:
673-
<<: *ignore_docs
674-
# rebuild to get correct version of lmdb-store (compiled for node14 not node12)
675-
npm_rebuild: true
676-
requires:
677-
- lint
678-
- typecheck
679-
- bootstrap
680625
- integration_tests_gatsby_source_wordpress:
681626
<<: *e2e-test-workflow
682627
- integration_tests_node_manifest:
@@ -727,8 +672,3 @@ workflows:
727672
branches:
728673
only:
729674
- master
730-
- update_i18n_source:
731-
filters:
732-
branches:
733-
only:
734-
- master

0 commit comments

Comments
 (0)