diff options
author | cbdev <cb@cbcdn.com> | 2020-04-21 00:20:23 +0200 |
---|---|---|
committer | cbdev <cb@cbcdn.com> | 2020-04-21 00:20:23 +0200 |
commit | bc275e10defe27e6d288ccf9125fe9b915168240 (patch) | |
tree | d27a955332d1d1c187352dbe9631117d4e93bfc0 /.travis-ci.sh | |
parent | 918fb606174dcf42553be65e3d2306996c52488f (diff) | |
download | midimonster-bc275e10defe27e6d288ccf9125fe9b915168240.tar.gz midimonster-bc275e10defe27e6d288ccf9125fe9b915168240.tar.bz2 midimonster-bc275e10defe27e6d288ccf9125fe9b915168240.zip |
Do not load lua backend automatically on Windows
Diffstat (limited to '.travis-ci.sh')
-rw-r--r-- | .travis-ci.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.travis-ci.sh b/.travis-ci.sh index c832f2c..5272fde 100644 --- a/.travis-ci.sh +++ b/.travis-ci.sh @@ -71,7 +71,9 @@ elif [ "$TASK" = "windows" ]; then if make windows; then exit "$?" fi + # Build the lua backend but disable it by default to avoid scary error messages make -C backends lua.dll + mv backends/lua.dll backends/lua.dll.disabled travis_fold end "make_windows" if [ "$(git describe)" == "$(git describe --abbrev=0)" ]; then travis_fold start "deploy_windows" @@ -80,6 +82,7 @@ elif [ "$TASK" = "windows" ]; then mkdir ./deployment/docs cp ./midimonster.exe ./deployment/ cp ./backends/*.dll ./deployment/backends/ + cp ./backends/*.dll.disabled ./deployment/backends/ cp ./monster.cfg ./deployment/monster.cfg cp ./backends/*.md ./deployment/docs/ cp -r ./configs ./deployment/ |