Travis: windows build fix

This commit is contained in:
Georg Richter
2024-09-29 18:04:28 +02:00
parent 8078990c65
commit d2f70223dd

View File

@ -37,9 +37,8 @@ before_install:
esac
- |-
if [ "$TRAVIS_OS_NAME" == "windows" ] ; then
where /R . *.msi > msi.txt
set /p msipackage < msi.txt
msiexec /i %msipackage% /qn ADDLOCAL=ProductFeature,IncludeFeature INSTALLLEVEL=1000
msipackage = ${ls ./win/packaging/*.msi}
msiexec /i $msipackage /qn ADDLOCAL=ProductFeature,IncludeFeature INSTALLLEVEL=1000
else
sudo make install
export MARIADB_PLUGIN_DIR==`mariadb_config --plugindir`