Changes since version 1.7.4: * unix: Support atomic compare & swap xlC on AIX (nmushell) * unix: Fix including uv-aix.h on AIX (nmushell) * unix: consolidate rwlock tryrdlock trywrlock errors (Saúl Ibarra Corretgé) * unix, win: consolidate mutex trylock errors (Saúl Ibarra Corretgé) * darwin: fix memory leak in uv_cpu_info (Jianghua Yang) * test: add tests for the uv_rwlock implementation (Bert Belder) * win: redo/fix the uv_rwlock APIs (Bert Belder) * win: don't fetch function pointers to SRWLock APIs (Bert Belder)
37 lines
742 B
YAML
37 lines
742 B
YAML
version: v1.7.5.build{build}
|
|
|
|
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
|