blob: 26008bbed35e95160a81b01b4876b07760b6a69f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
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%
# 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
|