Skip to content

Commit

Permalink
Merge branch 'datastax:master' into hotfix/remove-types-long-dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
ramikg authored May 3, 2024
2 parents f0c5519 + f767bcc commit 6f21377
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 7 deletions.
7 changes: 7 additions & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,12 @@ def executeTests() {
. ${HOME}/environment.txt
set +o allexport
# Fix Java version at Java8 for now because of dependencies in DSE.
# TODO: This should last us through testing against Cassandra 4.1.x at least but
# will eventually need to be made more generic.
. ${JABBA_SHELL}
jabba use 1.8
npm run ci_jenkins
'''
}
Expand Down Expand Up @@ -302,6 +308,7 @@ pipeline {
SIMULACRON_PATH = '/home/jenkins/simulacron.jar'
CCM_PATH = '/home/jenkins/ccm'
CCM_ENVIRONMENT_SHELL = '/usr/local/bin/ccm_environment.sh'
JABBA_SHELL = '/usr/lib/jabba/jabba.sh'
}

stages {
Expand Down
8 changes: 3 additions & 5 deletions ci/appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,9 @@ environment:
appveyor_build_worker_cloud: gce
ci_type: ci_unit_appveyor
matrix:
- nodejs_version: 8
- nodejs_version: 10
CCM_VERSION: 3.11.4
ci_type: ci_appveyor
- nodejs_version: 12
- nodejs_version: 16
- nodejs_version: 18
- nodejs_version: 20
image: Visual Studio 2017
platform:
- x64
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@
"integration_short": "./node_modules/.bin/mocha test/integration/short -R spec -t 5000 --recursive",
"integration_long": "./node_modules/.bin/mocha test/integration/long -R spec -t 5000 --recursive",
"ci_jenkins": "./node_modules/.bin/mocha test/unit test/integration/short --recursive -R mocha-jenkins-reporter --exit",
"ci_appveyor": "./node_modules/.bin/mocha test/unit test/integration/short --recursive -R mocha-appveyor-reporter --exit",
"ci_unit_appveyor": "./node_modules/.bin/mocha test/unit --recursive -R mocha-appveyor-reporter --exit",
"ci_appveyor": ".\\\"node_modules/.bin/mocha\" test/unit test/integration/short --recursive -R mocha-appveyor-reporter --exit",
"ci_unit_appveyor": ".\\\"node_modules/.bin/mocha\" test/unit --recursive -R mocha-appveyor-reporter --exit",
"server_api": "./node_modules/.bin/mocha test/integration/short -g '@SERVER_API' --recursive --exit",
"eslint": "eslint lib test"
},
Expand Down

0 comments on commit 6f21377

Please sign in to comment.