File tree 3 files changed +12
-7
lines changed
3 files changed +12
-7
lines changed Original file line number Diff line number Diff line change @@ -82,6 +82,12 @@ def executeTests() {
82
82
. ${HOME}/environment.txt
83
83
set +o allexport
84
84
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
+
85
91
npm run ci_jenkins
86
92
'''
87
93
}
@@ -302,6 +308,7 @@ pipeline {
302
308
SIMULACRON_PATH = ' /home/jenkins/simulacron.jar'
303
309
CCM_PATH = ' /home/jenkins/ccm'
304
310
CCM_ENVIRONMENT_SHELL = ' /usr/local/bin/ccm_environment.sh'
311
+ JABBA_SHELL = ' /usr/lib/jabba/jabba.sh'
305
312
}
306
313
307
314
stages {
Original file line number Diff line number Diff line change @@ -2,11 +2,9 @@ environment:
2
2
appveyor_build_worker_cloud : gce
3
3
ci_type : ci_unit_appveyor
4
4
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
10
8
image : Visual Studio 2017
11
9
platform :
12
10
- x64
Original file line number Diff line number Diff line change 47
47
"integration_short" : " ./node_modules/.bin/mocha test/integration/short -R spec -t 5000 --recursive" ,
48
48
"integration_long" : " ./node_modules/.bin/mocha test/integration/long -R spec -t 5000 --recursive" ,
49
49
"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" ,
52
52
"server_api" : " ./node_modules/.bin/mocha test/integration/short -g '@SERVER_API' --recursive --exit" ,
53
53
"eslint" : " eslint lib test"
54
54
},
You can’t perform that action at this time.
0 commit comments