mirror of
https://github.com/neovim/neovim.git
synced 2024-12-20 03:05:11 -07:00
6348864e29
Build the default CMake target now that helptag generation is working again. For build artifacts create a zip file with an instalation of Neovim (generated by cpack).
23 lines
601 B
YAML
23 lines
601 B
YAML
version: '{build}'
|
|
skip_tags: true
|
|
environment:
|
|
# The default cpack in the PATH is not CMake
|
|
CPACK: C:\Program Files (x86)\CMake\bin\cpack.exe
|
|
matrix:
|
|
- TARGET: MINGW_64
|
|
BUILD_DEPS_SCRIPT: .ci\msys_build_deps.bat
|
|
BUILD_SCRIPT: .ci\msys_build.bat
|
|
- TARGET: MINGW_32
|
|
BUILD_DEPS_SCRIPT: .ci\msys_build_deps.bat
|
|
BUILD_SCRIPT: .ci\msys_build.bat
|
|
install: []
|
|
build_script:
|
|
- if defined BUILD_DEPS_SCRIPT call %BUILD_DEPS_SCRIPT%
|
|
- call %BUILD_SCRIPT%
|
|
# Build artifacts
|
|
- cd build
|
|
- '"%CPACK%" -G NSIS -C Release'
|
|
- '"%CPACK%" -G ZIP -C Release'
|
|
artifacts:
|
|
- path: build/Neovim.zip
|