diff options
| -rw-r--r-- | .ci/msys_build.bat | 4 | ||||
| -rw-r--r-- | appveyor.yml | 15 | 
2 files changed, 6 insertions, 13 deletions
diff --git a/.ci/msys_build.bat b/.ci/msys_build.bat index bf77b5bd34..490c8b6830 100644 --- a/.ci/msys_build.bat +++ b/.ci/msys_build.bat @@ -13,9 +13,7 @@ set PATH=C:\msys64\mingw%BITS%\bin;C:\Windows\System32;C:\Windows;%PATH%  mkdir build  cd build  cmake -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=Release .. || goto :error -:: FIXME(equalsraf): for now just build nvim and copy DLLs. -:: We can't generate the helptags just yet (#810 fixes this) -mingw32-make nvim_dll_deps VERBOSE=1 || goto :error +mingw32-make VERBOSE=1 || goto :error  bin\nvim --version || goto :error  cd .. diff --git a/appveyor.yml b/appveyor.yml index 26008bbed3..53a0ca5eb3 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -14,14 +14,9 @@ install: []  build_script:  - if defined BUILD_DEPS_SCRIPT call %BUILD_DEPS_SCRIPT%  - call %BUILD_SCRIPT% -# FIXME(equalsraf): don't generate artifacts until the -# build script builds the main target, for now pack bin/ -artifacts: -- path: build/bin  # Build artifacts -#- cd build -#- '"%CPACK%" -G NSIS -C Release' -#- '"%CPACK%" -G ZIP -C Release' -#artifacts: -#- path: build/Neovim.zip -#- path: build/Neovim.exe +- cd build +- '"%CPACK%" -G NSIS -C Release' +- '"%CPACK%" -G ZIP -C Release' +artifacts: +- path: build/Neovim.zip  | 
