Skip to content

Change to PGSQL temporarily until we fix the recent issues with sqlsrv #262

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 17, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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} \
Expand Down