Unverified Commit 1813deb2 authored by Adin Schmahmann's avatar Adin Schmahmann Committed by GitHub

Merge pull request #7545 from ipfs/chore/use-published-interop-test-version

chore: use published ipfs-interop module instead of master branch
parents 6eb5db7e b5852295
...@@ -170,36 +170,20 @@ jobs: ...@@ -170,36 +170,20 @@ jobs:
- *make_out_dirs - *make_out_dirs
- attach_workspace: - attach_workspace:
at: /tmp/circleci-workspace at: /tmp/circleci-workspace
- run:
name: Cloning
command: |
git clone https://github.com/ipfs/interop.git
git -C interop log -1
- restore_cache:
keys:
- v2-interop-{{ checksum "~/ipfs/go-ipfs/interop/package-lock.json" }}
- v2-interop-
- run: - run:
name: Installing dependencies name: Installing dependencies
command: | command: |
npm install npm init -y
working_directory: ~/ipfs/go-ipfs/interop npm install ipfs@^0.48.1
- save_cache: npm install ipfs-interop@^2.0.0
key: v2-interop-{{ checksum "~/ipfs/go-ipfs/interop/package-lock.json" }} npm install mocha-circleci-reporter@0.0.3
paths:
- ~/ipfs/go-ipfs/interop/node_modules
- run:
name: Installing reporting tools
command: |
npm install --save-dev mocha-circleci-reporter@0.0.3
working_directory: ~/ipfs/go-ipfs/interop working_directory: ~/ipfs/go-ipfs/interop
- run: - run:
name: Running tests name: Running tests
command: | command: |
mkdir -p /tmp/test-results/interop/ mkdir -p /tmp/test-results/interop/
export MOCHA_FILE="$(mktemp /tmp/test-results/interop/unit.XXXXXX.xml)" export MOCHA_FILE="$(mktemp /tmp/test-results/interop/unit.XXXXXX.xml)"
node_modules/.bin/mocha --reporter mocha-circleci-reporter \ npx ipfs-interop -- -t node -f $(sed -n -e "s|^require('\(.*\)')$|test/\1|p" node_modules/ipfs-interop/test/node.js | circleci tests split) -- --reporter mocha-circleci-reporter
$(sed -n -e "s|^require('\(.*\)')$|test/\1|p" test/node.js | circleci tests split)
working_directory: ~/ipfs/go-ipfs/interop working_directory: ~/ipfs/go-ipfs/interop
environment: environment:
IPFS_REUSEPORT: false IPFS_REUSEPORT: false
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment