test(interop): allow weak keys
Steven Allen committed
Dec 4, 2019 at 11:36 UTC
e8a64c9f568d59ca27f0487d6acc033fb0919ea1
1 file changed
+7
-2
.circleci/config.yml
+7
-2
@@ -144,8 +144,6 @@ jobs:
144
- *store_gomod
145
interop:
146
executor: node
147
- environment:
148
- IPFS_GO_EXEC: /tmp/circleci-workspace/bin/ipfs
147
parallelism: 4
148
steps:
149
- *make_out_dirs
@@ -169,6 +167,11 @@ jobs:
167
key: v1-interop-{{ checksum "~/ipfs/go-ipfs/interop/package-lock.json" }}
168
paths:
169
- ~/ipfs/go-ipfs/interop/node_modules
170
+ - run:
171
+ name: Installing js-ipfs
172
+ command: |
173
+ npm install ipfs
174
+ working_directory: ~/ipfs/go-ipfs/interop
175
- run:
176
name: Installing reporting tools
177
command: |
@@ -185,6 +188,8 @@ jobs:
188
working_directory: ~/ipfs/go-ipfs/interop
189
environment:
190
IPFS_REUSEPORT: false
191
+ LIBP2P_ALLOW_WEAK_RSA_KEYS: true
192
+ IPFS_GO_EXEC: /tmp/circleci-workspace/bin/ipfs
193
- store_test_results:
194
path: /tmp/test-results
195
go-ipfs-api: