diff --git a/tracker_automations/bulk_prelaunch_jobs/criteria/awaiting_integration/jobs.sh b/tracker_automations/bulk_prelaunch_jobs/criteria/awaiting_integration/jobs.sh index 3268e8b9..72dfeb61 100755 --- a/tracker_automations/bulk_prelaunch_jobs/criteria/awaiting_integration/jobs.sh +++ b/tracker_automations/bulk_prelaunch_jobs/criteria/awaiting_integration/jobs.sh @@ -6,11 +6,11 @@ # and we need to keep it (until we move to REST from CLI) # We want to launch always a sqlsrv PHPUNIT -echo -n "PHPUnit (sqlsrv): " >> "${resultfile}.jenkinscli" +echo -n "PHPUnit (pgsql): " >> "${resultfile}.jenkinscli" ${jenkinsreq} "DEV.02 - Developer-requested PHPUnit" \ -p REPOSITORY=${repository} \ -p BRANCH=${branch} \ - -p DATABASE=sqlsrv \ + -p DATABASE=pgsql \ -p PHPVERSION=${php_version} \ -w >> "${resultfile}.jenkinscli" < /dev/null diff --git a/tracker_automations/bulk_prelaunch_jobs/criteria/list_of_mdls/jobs.sh b/tracker_automations/bulk_prelaunch_jobs/criteria/list_of_mdls/jobs.sh index 1ab7517f..3d32b230 100755 --- a/tracker_automations/bulk_prelaunch_jobs/criteria/list_of_mdls/jobs.sh +++ b/tracker_automations/bulk_prelaunch_jobs/criteria/list_of_mdls/jobs.sh @@ -46,11 +46,11 @@ echo "Behat options: ${behat_options}" # We want to launch always a sqlsrv PHPUNIT if [[ "${jobtype}" == "all" ]] || [[ "${jobtype}" == "phpunit" ]]; then - echo -n "PHPUnit (sqlsrv / ${phpunit_options}): " >> "${resultfile}.jenkinscli" + echo -n "PHPUnit (pgsql / ${phpunit_options}): " >> "${resultfile}.jenkinscli" ${jenkinsreq} "DEV.02 - Developer-requested PHPUnit" \ -p REPOSITORY=${repository} \ -p BRANCH=${branch} \ - -p DATABASE=sqlsrv \ + -p DATABASE=pgsql \ -p PHPVERSION=${php_version} \ -p TAGS=${phpunit_filter} \ -p TESTSUITE=${phpunit_suite} \