@@ -10,13 +10,13 @@ aliases:
10
10
- &restore_yarn_cache
11
11
restore_cache :
12
12
name : Restore yarn cache
13
- key : v2 -node-{{ arch }}-{{ checksum "yarn.lock" }}-yarn
13
+ key : v3 -node-{{ arch }}-{{ checksum "yarn.lock" }}-yarn
14
14
15
15
- &restore_node_modules
16
16
restore_cache :
17
17
name : Restore node_modules cache
18
18
keys :
19
- - v2 -node-{{ arch }}-{{ .Branch }}-{{ checksum "yarn.lock" }}-{{ checksum "workspace_info.txt" }}-node-modules
19
+ - v3 -node-{{ arch }}-{{ .Branch }}-{{ checksum "yarn.lock" }}-{{ checksum "workspace_info.txt" }}-node-modules
20
20
21
21
- &TEST_PARALLELISM 20
22
22
53
53
# checksum. This will speed up the setup job for all PRs where the
54
54
# lockfile is the same.
55
55
name : Save yarn cache for future installs
56
- key : v2 -node-{{ arch }}-{{ checksum "yarn.lock" }}-yarn
56
+ key : v3 -node-{{ arch }}-{{ checksum "yarn.lock" }}-yarn
57
57
paths :
58
58
- ~/.cache/yarn
59
59
- save_cache :
62
62
# all jobs run on this branch with the same lockfile.
63
63
name : Save node_modules cache
64
64
# This cache key is per branch, a yarn install in setup is required.
65
- key : v2 -node-{{ arch }}-{{ .Branch }}-{{ checksum "yarn.lock" }}-{{ checksum "workspace_info.txt" }}-node-modules
65
+ key : v3 -node-{{ arch }}-{{ .Branch }}-{{ checksum "yarn.lock" }}-{{ checksum "workspace_info.txt" }}-node-modules
66
66
paths :
67
67
- node_modules
68
68
@@ -171,9 +171,9 @@ jobs:
171
171
- run :
172
172
name : Download artifacts for base revision
173
173
command : |
174
- git fetch origin main
174
+ git fetch origin master
175
175
cd ./scripts/release && yarn && cd ../../
176
- scripts/release/download-experimental-build.js --commit=$(git merge-base HEAD origin/main )
176
+ scripts/release/download-experimental-build.js --commit=$(git merge-base HEAD origin/master )
177
177
mv ./build2 ./base-build
178
178
- persist_to_workspace :
179
179
root : .
@@ -356,7 +356,7 @@ jobs:
356
356
- run :
357
357
name : Run publish script
358
358
command : |
359
- git fetch origin main
359
+ git fetch origin master
360
360
cd ./scripts/release && yarn && cd ../../
361
361
scripts/release/prepare-release-from-ci.js --skipTests -r << parameters.release_channel >> --commit=<< parameters.commit_sha >>
362
362
cp ./scripts/release/ci-npmrc ~/.npmrc
@@ -414,7 +414,7 @@ workflows:
414
414
filters :
415
415
branches :
416
416
only :
417
- - main
417
+ - master
418
418
419
419
# New workflow that will replace "stable" and "experimental"
420
420
build_and_test :
@@ -491,14 +491,14 @@ workflows:
491
491
filters :
492
492
branches :
493
493
ignore :
494
- - main
494
+ - master
495
495
requires :
496
496
- setup
497
497
- sizebot :
498
498
filters :
499
499
branches :
500
500
ignore :
501
- - main
501
+ - master
502
502
requires :
503
503
- get_base_build
504
504
- yarn_build_combined
@@ -514,7 +514,7 @@ workflows:
514
514
filters :
515
515
branches :
516
516
only :
517
- - main
517
+ - master
518
518
jobs :
519
519
- setup
520
520
- test_fuzz :
@@ -555,7 +555,7 @@ workflows:
555
555
filters :
556
556
branches :
557
557
only :
558
- - main
558
+ - master
559
559
jobs :
560
560
- setup
561
561
- publish_prerelease :
0 commit comments