Skip to content
This repository was archived by the owner on Aug 30, 2024. It is now read-only.

Commit c409805

Browse files
committed
Add new test server env vars
1 parent 18245a9 commit c409805

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Jenkinsfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
def getEnvForSuite(suiteName) {
22
// Base environment variables
33
def envVars = [
4-
"CLOUDANT_ACCOUNT=$DB_USER",
4+
"DB_URL=${SDKS_TEST_SERVER_URL}",
55
"RUN_CLOUDANT_TESTS=1",
66
"SKIP_DB_UPDATES=1" // Disable pending resolution of case 71610
77
]
@@ -29,8 +29,8 @@ def setupPythonAndTest(pythonVersion, testSuite) {
2929
// Unstash the source on this node
3030
unstash name: 'source'
3131
// Set up the environment and test
32-
withCredentials([usernamePassword(credentialsId: 'clientlibs-test', usernameVariable: 'DB_USER', passwordVariable: 'DB_PASSWORD'),
33-
string(credentialsId: 'clientlibs-test-iam', variable: 'DB_IAM_API_KEY')]) {
32+
withCredentials([usernamePassword(credentialsId: 'testServerLegacy', usernameVariable: 'DB_USER', passwordVariable: 'DB_PASSWORD'),
33+
string(credentialsId: 'testServerIamApiKey', variable: 'DB_IAM_API_KEY')]) {
3434
withEnv(getEnvForSuite("${testSuite}")) {
3535
try {
3636
sh """

0 commit comments

Comments
 (0)