Skip to content

Commit fbfdc68

Browse files
committed
chore: updating dependencies
1 parent 9bedbce commit fbfdc68

File tree

5 files changed

+2779
-51
lines changed

5 files changed

+2779
-51
lines changed

.travis.yml

Lines changed: 11 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -17,35 +17,25 @@ plugins:
1717
- g++-4.8
1818

1919
node_js:
20-
- "stable"
21-
- "6.9.5"
20+
- '10'
2221

23-
# matrix:
24-
# include:
25-
# - node_js: "6.9.5"
26-
# os: osx
22+
matrix:
23+
include:
24+
- node_js: "10"
25+
os: osx
26+
- node_js: "10"
27+
os: linux
2728

2829
script:
2930
- npm run test
30-
- curl -o package.sh -L https://raw.githubusercontent.com/deepstreamIO/deepstream.io-connector-publishingtest/master/scripts/package.sh
31+
- curl -o package.sh -L https://raw.githubusercontent.com/deepstreamIO/deepstream.io/connector-submodules/scripts/connector/publish-connector.sh
3132
- chmod 555 package.sh
3233
- ./package.sh
3334

3435
deploy:
35-
- provider: s3
36-
access_key_id:
37-
secure: "j/k/h9AXyi6cHk8fWWVQX+/GNj2mPdYWah9IM0ZGJ7vsVwiFz5uzNgSQYwnIl75cK8R/EECeF0ENotgfSN8oUOgx7cOeVTbFCv9iNMgDJQ9Jla+ygLzCzPh+G/i6+artIsKQvch3pLJgX5d64TjntIAe8WLrYkosbzKLbCt00YA="
38-
secret_access_key:
39-
secure: "JHQ+9qdpvhTZQtLYJE8EJuEnCA+i6D4p1ceAecYzI9tRcw6lzlr6M7wrcYrGD8CYfIDVw3SUhhUtB7IeGxH6lNeoX7tzVj+usH8nb18AuvP6iz+y1pff4jQy0N+TzTvY0GErJlua2SD7fmPihuiT98lCHshIKIQmqEdas4PwTiM="
40-
bucket: ds-server-artifacts
41-
skip_cleanup: true
42-
acl: public_read
43-
local_dir: build
44-
upload-dir: $TRAVIS_REPO_SLUG
4536
- provider: releases
4637
skip_cleanup: true
47-
api_key:
48-
secure: "kGTQU70iP0zALcGXGdIvEyY90mC0iG9mRk8Pa0ZBek0ZHLp/4Y0JEO5gLTG8jpisGCFsmKAdIxR2qvaMP2C/48SpVWndLIl8Ktc7JJcQXs8sfRnITYLw40S0/YMMuopNMY1q24px+G/v+eftrdmcfiuYbM5RkKW+hFhzKZTyS1s="
38+
api_key: ${GITHUB_TOKEN}
4939
file_glob: true
5040
file:
5141
- "build/*.tar.gz"
@@ -54,9 +44,9 @@ deploy:
5444
tags: true
5545

5646
after_deploy:
57-
- curl -o test.sh -L https://raw.githubusercontent.com/deepstreamIO/deepstream.io-connector-publishingtest/master/scripts/test.sh
47+
- curl -o test.sh -L https://raw.githubusercontent.com/deepstreamIO/deepstream.io/connector-submodules/scripts/connector/test-connector.sh
5848
- chmod 555 test.sh
5949
- ./test.sh
6050

6151
after_script:
62-
- "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
52+
- "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"

appveyor.yml

Lines changed: 6 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ environment:
33

44
# Do not insert any code under here without making sures it's in publishingtest first
55
os:
6-
- Visual Studio 2015
6+
- Visual Studio 2017
77

88
platform:
99
- x64
@@ -13,14 +13,14 @@ services:
1313

1414
install:
1515
- choco install -y memcached
16-
- ps: Install-Product node 6.9.5
16+
- ps: Install-Product node 10
1717
- npm install
1818

1919
test_script:
2020
- node --version
2121
- npm --version
2222
- npm test
23-
- curl -o package.sh -L https://raw.githubusercontent.com/deepstreamIO/deepstream.io-connector-publishingtest/master/scripts/package.sh
23+
- curl -o package.sh -L https://raw.githubusercontent.com/deepstreamIO/deepstream.io/connector-submodules/scripts/connector/publish-connector.sh
2424
- bash package.sh
2525
- For /d %%d in ( build\** ) do MOVE %%d %cd%
2626

@@ -31,29 +31,18 @@ artifacts:
3131
- path: '**\*.zip'
3232

3333
deploy:
34-
- provider: S3
35-
access_key_id:
36-
secure: zIKwOEzh56IXWlpXWMDwjC9Dqz58ZifBBQUZ43wDQWs=
37-
secret_access_key:
38-
secure: br3dL6aFlkMBeqdXSeXfKeZmjyZl1OGD9STaUiGXsWic50DEqedx24C0LipYJqYI
39-
bucket: ds-server-artifacts
40-
folder: $(APPVEYOR_REPO_NAME)
41-
on:
42-
appveyor_repo_tag: false
43-
4434
- provider: GitHub
4535
release: $(APPVEYOR_REPO_TAG_NAME)
4636
description: 'Release description'
47-
auth_token:
48-
secure: tZHuiZVCwkXRYMihVyoNrmDxAm6xPbXyop7Plg5uUWIIqA1EoUCrTYd/V+0D1I+Y
37+
auth_token: ${GITHUB_TOKEN}
4938
artifact: 'deepstream.io-connector'
5039
draft: false
5140
on:
5241
appveyor_repo_tag: true
5342

5443
after_deploy:
55-
- curl -o test.sh -L https://raw.githubusercontent.com/deepstreamIO/deepstream.io-connector-publishingtest/master/scripts/test.sh
44+
- curl -o test.sh -L https://raw.githubusercontent.com/deepstreamIO/deepstream.io/connector-submodules/scripts/connector/test-connector.sh
5645
- chmod 555 test.sh
5746
- bash test.sh
5847

59-
build: off
48+
build: off

0 commit comments

Comments
 (0)