Skip to content

Commit

Permalink
feat(appveyor): install RIME_PLUGINS [skip travis]
Browse files Browse the repository at this point in the history
  • Loading branch information
lotem committed Mar 31, 2019
1 parent c857639 commit c7ce66f
Showing 1 changed file with 32 additions and 3 deletions.
35 changes: 32 additions & 3 deletions appveyor.install.bat
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
setlocal

set boost_build_options=toolset=msvc-14.0^
variant=release^
link=static^
threading=multi^
runtime-link=static^
define=BOOST_USE_WINAPI_VERSION=0x0501^
cxxflags="/Zc:threadSafeInit- "^
--with-date_time^
--with-filesystem^
--with-locale^
--with-regex^
--with-system^
--with-thread

set nocache=0

if not exist thirdparty.cached set nocache=1
Expand All @@ -11,7 +25,7 @@ if %nocache% == 1 (
7z x boost_1_68_0.7z | find "ing archive"
cd boost_1_68_0
call .\bootstrap.bat
call .\b2.exe --prefix=%BOOST_ROOT% toolset=msvc-14.0 variant=release link=static threading=multi runtime-link=static define=BOOST_USE_WINAPI_VERSION=0x0501 cxxflags="/Zc:threadSafeInit- " --with-date_time --with-filesystem --with-locale --with-regex --with-system --with-thread -q -d0 install
call .\b2.exe --prefix=%BOOST_ROOT% %boost_build_options% -q -d0 install
xcopy /e /i /y /q %BOOST_ROOT%\include\boost-1_68\boost %BOOST_ROOT%\boost
popd
if %ERRORLEVEL% NEQ 0 goto ERROR
Expand All @@ -23,17 +37,32 @@ if %nocache% == 1 (
echo.
echo Thirdparty libraries installed.
echo.
goto EXIT
) else (
echo.
echo Last build date of cache is
type thirdparty.cached
echo.
goto EXIT
)

if defined RIME_PLUGINS (
for %%s in (%RIME_PLUGINS%) do call :install_plugin %%s
)

goto EXIT

:ERROR
set EXITCODE=%ERRORLEVEL%

:EXIT
exit /b %EXITCODE%

:install_plugin
set slug=%1
echo "plugin: %slug%"
set plugin_project=%slug:*/=%
set plugin_dir=plugins/%plugin_project:librime-=%
git clone --depth 1 "https://github.com/%slug%.git" %plugin_dir%
if exist %plugin_dir%\appveyor.install.bat (
call %plugin_dir%\appveyor.install.bat
)
exit /b

0 comments on commit c7ce66f

Please sign in to comment.