mirror of
https://github.com/mariadb-corporation/mariadb-connector-c.git
synced 2025-04-18 21:24:07 +03:00
travis: use connector-test-machine test script that permit to run the following tests : * MariaDB all supported version * Maxscale * MySQL * SkySQL If CONNECTOR_TEST_SECRET_KEY is not provided (PR) only MariaDB and MySQL community will be test Pull request testing correction appveyor correction using archive if not latest server release
17 lines
445 B
Batchfile
17 lines
445 B
Batchfile
@echo off
|
|
set archive=http://ftp.hosteurope.de/mirror/archive.mariadb.org//mariadb-%DB%/winx64-packages/mariadb-%DB%-winx64.msi
|
|
set last=http://mirror.i3d.net/pub/mariadb//mariadb-%DB%/winx64-packages/mariadb-%DB%-winx64.msi
|
|
|
|
curl -fLsS -o server.msi %archive%
|
|
|
|
if %ERRORLEVEL% == 0 goto end
|
|
|
|
curl -fLsS -o server.msi %last%
|
|
if %ERRORLEVEL% == 0 goto end
|
|
|
|
echo Failure Reason Given is %errorlevel%
|
|
exit /b %errorlevel%
|
|
|
|
:end
|
|
echo "File found".
|