Skip to content

Commit df728f6

Browse files
authored
Removed unneccessary from circleci (#567)
1 parent 9c92505 commit df728f6

File tree

2 files changed

+1
-39
lines changed

2 files changed

+1
-39
lines changed

.circleci/README.md

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
11
# Circle CI
22

3-
This directory is home to the Circle CI configuration file. Circle is our continuous integration service provider. You can see the overall status of React Native's builds at https://circleci.com/gh/facebook/react-native
4-
5-
You may also see an individual PR's build status by scrolling down to the Checks section in the PR.
3+
This directory is home to the Circle CI configuration file.

.circleci/config.yml

-36
Original file line numberDiff line numberDiff line change
@@ -68,39 +68,3 @@ jobs:
6868
cmake -DCMAKE_BUILD_TYPE=Release ..
6969
make -j4
7070
popd
71-
72-
- restore_cache:
73-
keys:
74-
- npm-cache-{{ .Branch }}-{{ .Revision }}
75-
- npm-cache-{{ .Branch }}-
76-
- npm-cache-
77-
78-
- run:
79-
name: Install and patch NPM dependencies
80-
command: npm ci && npx patch-package
81-
82-
- save_cache:
83-
key: npm-cache-{{ .Branch }}-{{ .Revision }}
84-
paths:
85-
- /root/.npm
86-
87-
- type: shell
88-
name: Start react-native packager
89-
command: npm start
90-
background: true
91-
92-
- type: shell
93-
name: Start react-native-desktop's js-executor.js
94-
command: node ./js-executor.js
95-
background: true
96-
97-
- run:
98-
name: Run Jest tests
99-
command: npm run-script test-ci
100-
101-
- run:
102-
name: Run integration tests
103-
command: |
104-
pushd build
105-
xvfb-run --server-args="-screen 0 1024x768x24" ctest -VV
106-
popd

0 commit comments

Comments
 (0)