Skip to content

Commit 4c2081e

Browse files
authored
Merge branch 'datastax:master' into hotfix/support-remove-without-full-primary-key
2 parents 7352282 + f767bcc commit 4c2081e

File tree

3 files changed

+12
-7
lines changed

3 files changed

+12
-7
lines changed

Jenkinsfile

+7
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,12 @@ def executeTests() {
8282
. ${HOME}/environment.txt
8383
set +o allexport
8484
85+
# Fix Java version at Java8 for now because of dependencies in DSE.
86+
# TODO: This should last us through testing against Cassandra 4.1.x at least but
87+
# will eventually need to be made more generic.
88+
. ${JABBA_SHELL}
89+
jabba use 1.8
90+
8591
npm run ci_jenkins
8692
'''
8793
}
@@ -302,6 +308,7 @@ pipeline {
302308
SIMULACRON_PATH = '/home/jenkins/simulacron.jar'
303309
CCM_PATH = '/home/jenkins/ccm'
304310
CCM_ENVIRONMENT_SHELL = '/usr/local/bin/ccm_environment.sh'
311+
JABBA_SHELL = '/usr/lib/jabba/jabba.sh'
305312
}
306313

307314
stages {

ci/appveyor.yml

+3-5
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,9 @@ environment:
22
appveyor_build_worker_cloud: gce
33
ci_type: ci_unit_appveyor
44
matrix:
5-
- nodejs_version: 8
6-
- nodejs_version: 10
7-
CCM_VERSION: 3.11.4
8-
ci_type: ci_appveyor
9-
- nodejs_version: 12
5+
- nodejs_version: 16
6+
- nodejs_version: 18
7+
- nodejs_version: 20
108
image: Visual Studio 2017
119
platform:
1210
- x64

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@
4747
"integration_short": "./node_modules/.bin/mocha test/integration/short -R spec -t 5000 --recursive",
4848
"integration_long": "./node_modules/.bin/mocha test/integration/long -R spec -t 5000 --recursive",
4949
"ci_jenkins": "./node_modules/.bin/mocha test/unit test/integration/short --recursive -R mocha-jenkins-reporter --exit",
50-
"ci_appveyor": "./node_modules/.bin/mocha test/unit test/integration/short --recursive -R mocha-appveyor-reporter --exit",
51-
"ci_unit_appveyor": "./node_modules/.bin/mocha test/unit --recursive -R mocha-appveyor-reporter --exit",
50+
"ci_appveyor": ".\\\"node_modules/.bin/mocha\" test/unit test/integration/short --recursive -R mocha-appveyor-reporter --exit",
51+
"ci_unit_appveyor": ".\\\"node_modules/.bin/mocha\" test/unit --recursive -R mocha-appveyor-reporter --exit",
5252
"server_api": "./node_modules/.bin/mocha test/integration/short -g '@SERVER_API' --recursive --exit",
5353
"eslint": "eslint lib test"
5454
},

0 commit comments

Comments
 (0)