File tree Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -382,6 +382,8 @@ matrix:
382
382
env : DB=MySQL VERSION=4.1.22 CONC_DB=MariaDB CONC_VERSION=3.0.6
383
383
- perl : " 5.22"
384
384
env : DB=MySQL VERSION=4.1.22 SERVER=system
385
+ - perl : " 5.22"
386
+ env : SERVER=none
385
387
386
388
addons :
387
389
apt :
@@ -505,6 +507,9 @@ before_script:
505
507
elif [ -n "$CONC_DB" ] || [ "$SERVER" = "system" ]; then
506
508
export DBD_MARIADB_TESTHOST=127.0.0.1 ;
507
509
export DBD_MARIADB_TESTPORT=3306 ;
510
+ elif [ "$SERVER" = "none" ]; then
511
+ export DBD_MARIADB_TESTHOST=none ;
512
+ export DBD_MARIADB_TESTPORT=1 ;
508
513
fi
509
514
- if [ -n "$CONC_DB" ]; then
510
515
if [ -x $HOME/conc/bin/mysql_config ]; then
@@ -528,7 +533,9 @@ before_script:
528
533
fi
529
534
- export HARNESS_OPTIONS=j4
530
535
- export RELEASE_TESTING=1
531
- - export CONNECTION_TESTING=1
536
+ - if [ "$SERVER" != "none" ]; then
537
+ export CONNECTION_TESTING=1 ;
538
+ fi
532
539
533
540
script :
534
541
- make realclean || true
You can’t perform that action at this time.
0 commit comments