mirror of
https://github.com/nodejs/node.git
synced 2024-11-29 23:16:30 +01:00
8514269876
Fixes: https://github.com/nodejs/node/issues/10165 Fixes: https://github.com/nodejs/node/issues/9856 Fixes: https://github.com/nodejs/node/issues/10607 Fixes: https://github.com/nodejs/node/issues/11104 PR-URL: https://github.com/nodejs/node/pull/11094 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com> Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com> Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
37 lines
743 B
YAML
37 lines
743 B
YAML
version: v1.11.0.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
|