Skip to content

Commit b1826cd

Browse files
committed
chore: further streamline CircleCI configuration by removing obsolete install jobs
This commit continues to enhance the CircleCI configuration by eliminating the install jobs for versions 16, 17, and 19, further reducing redundancy and improving workflow efficiency.
1 parent 917db16 commit b1826cd

File tree

1 file changed

+0
-66
lines changed

1 file changed

+0
-66
lines changed

.circleci/config.yml

-66
Original file line numberDiff line numberDiff line change
@@ -55,72 +55,6 @@ jobs:
5555
- ~/react-spectrum
5656
key: react-spectrum-{{ .Environment.CACHE_VERSION }}-{{ .Environment.CIRCLE_SHA1 }}
5757

58-
install-16:
59-
executor: rsp-large
60-
steps:
61-
- checkout
62-
63-
- run:
64-
name: Write npmrc
65-
command: |
66-
if [ $NPM_PASSWORD ]; then
67-
cp .circleci/.npmrc .npmrc
68-
fi
69-
70-
- run:
71-
name: build
72-
command: |
73-
yarn install --immutable && yarn install-16
74-
75-
- save_cache:
76-
paths:
77-
- ~/react-spectrum
78-
key: react-spectrum16-{{ .Environment.CACHE_VERSION }}-{{ .Environment.CIRCLE_SHA1 }}
79-
80-
install-17:
81-
executor: rsp-large
82-
steps:
83-
- checkout
84-
85-
- run:
86-
name: Write npmrc
87-
command: |
88-
if [ $NPM_PASSWORD ]; then
89-
cp .circleci/.npmrc .npmrc
90-
fi
91-
92-
- run:
93-
name: build
94-
command: |
95-
yarn install --immutable && yarn install-17
96-
97-
- save_cache:
98-
paths:
99-
- ~/react-spectrum
100-
key: react-spectrum17-{{ .Environment.CACHE_VERSION }}-{{ .Environment.CIRCLE_SHA1 }}
101-
102-
install-19:
103-
executor: rsp-large
104-
steps:
105-
- checkout
106-
107-
- run:
108-
name: Write npmrc
109-
command: |
110-
if [ $NPM_PASSWORD ]; then
111-
cp .circleci/.npmrc .npmrc
112-
fi
113-
114-
- run:
115-
name: build
116-
command: |
117-
yarn install --immutable && yarn install-19
118-
119-
- save_cache:
120-
paths:
121-
- ~/react-spectrum
122-
key: react-spectrum-19-{{ .Environment.CACHE_VERSION }}-{{ .Environment.CIRCLE_SHA1 }}
123-
12458
test:
12559
executor: rsp
12660
parallelism: 3

0 commit comments

Comments
 (0)