Skip to content

Commit 2950b79

Browse files
committed
fix: solves vulnerabilities dependencies
1 parent ec8eb4c commit 2950b79

File tree

4 files changed

+71
-673
lines changed

4 files changed

+71
-673
lines changed

.travis.yml

+5-3
Original file line numberDiff line numberDiff line change
@@ -19,18 +19,20 @@ script:
1919
env:
2020
- CXX=g++-4.8 INSTALL_HIREDIS="yes"
2121
- INSTALL_HIREDIS="no"
22+
- CC_TEST_REPORTER_ID="4cee2f60edbf31acac6ddff823f0b93e2e9882c3e5c55130049e0fd878549f84"
2223

2324
before_script:
2425
- if [ "$INSTALL_HIREDIS" = "yes" ]; then npm install hiredis; fi
26+
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
27+
- chmod +x ./cc-test-reporter
28+
- ./cc-test-reporter before-build
2529

2630
addons:
2731
apt:
2832
sources:
2933
- ubuntu-toolchain-r-test
3034
packages:
3135
- g++-4.8
32-
code_climate:
33-
repo_token: 4cee2f60edbf31acac6ddff823f0b93e2e9882c3e5c55130049e0fd878549f84
3436

3537
after_success:
36-
- if [ "$INSTALL_HIREDIS" = "yes" ]; then cat ./coverage/lcov.info | ./node_modules/.bin/codeclimate-test-reporter; fi
38+
- if [ "$INSTALL_HIREDIS" = "yes" ]; then ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT; fi

0 commit comments

Comments
 (0)