Changes since version 1.17.0: * aix: fix -Wmaybe-uninitialized warning (cjihrig) * doc: remove note about SIGWINCH on Windows (Bartosz Sosnowski) * Revert "unix,win: wait for threads to start" (Ben Noordhuis) * unix,win: add uv_os_getpid() (Bartosz Sosnowski) * unix: remove incorrect assertion in uv_shutdown() (Jameson Nash) * doc: fix IRC URL in CONTRIBUTING.md (Matt Harrison)
40 lines
793 B
YAML
40 lines
793 B
YAML
version: v1.18.0.build{build}
|
|
|
|
init:
|
|
- git config --global core.autocrlf true
|
|
|
|
install:
|
|
- cinst -y nsis
|
|
|
|
matrix:
|
|
fast_finish: true
|
|
allow_failures:
|
|
- platform: x86
|
|
configuration: Release
|
|
- platform: x64
|
|
configuration: Release
|
|
|
|
platform:
|
|
- x86
|
|
- x64
|
|
|
|
configuration:
|
|
- Release
|
|
|
|
build_script:
|
|
# Fixed tag version number if using a tag.
|
|
- cmd: if "%APPVEYOR_REPO_TAG%" == "true" set APPVEYOR_BUILD_VERSION=%APPVEYOR_REPO_TAG_NAME%
|
|
# vcbuild overwrites the platform variable.
|
|
- cmd: set ARCH=%platform%
|
|
- cmd: vcbuild.bat release %ARCH% shared
|
|
|
|
after_build:
|
|
- '"%PROGRAMFILES(x86)%\NSIS\makensis" /DVERSION=%APPVEYOR_BUILD_VERSION% /DARCH=%ARCH% libuv.nsi'
|
|
|
|
artifacts:
|
|
- name: Installer
|
|
path: 'libuv-*.exe'
|
|
|
|
cache:
|
|
- C:\projects\libuv\build\gyp
|