diff options
| author | Chun Kuan Lee <[email protected]> | 2019-03-01 02:44:01 +0800 |
|---|---|---|
| committer | Chun Kuan Lee <[email protected]> | 2019-03-01 07:24:19 +0800 |
| commit | aeb7fbfd69d08639eb340d679c0451b2dbba5887 (patch) | |
| tree | 0736754a3d6d64e8dc855ea0b072754b7d22373f | |
| parent | Merge #15489: doc: Update release process for snap package (diff) | |
| download | discoin-aeb7fbfd69d08639eb340d679c0451b2dbba5887.tar.xz discoin-aeb7fbfd69d08639eb340d679c0451b2dbba5887.zip | |
appveyor: Don't build debug libraries instead of "build and delete"
| -rw-r--r-- | .appveyor.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.appveyor.yml b/.appveyor.yml index cb6a92006..ac39fe235 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -11,15 +11,15 @@ environment: PATH: 'C:\Python37-x64;C:\Python37-x64\Scripts;%PATH%' PYTHONUTF8: 1 cache: -- C:\tools\vcpkg\installed -> appveyor.yml -- C:\Users\appveyor\clcache -> appveyor.yml, build_msvc\**, **\Makefile.am, **\*.vcxproj.in +- C:\tools\vcpkg\installed -> .appveyor.yml +- C:\Users\appveyor\clcache -> .appveyor.yml, build_msvc\**, **\Makefile.am, **\*.vcxproj.in install: - cmd: pip install --quiet git+https://github.com/frerich/[email protected] # Disable zmq test for now since python zmq library on Windows would cause Access violation sometimes. # - cmd: pip install zmq +- cmd: echo set(VCPKG_BUILD_TYPE release) >> C:\tools\vcpkg\triplets\%PLATFORM%-windows-static.cmake - cmd: vcpkg remove --outdated --recurse - cmd: vcpkg install --triplet %PLATFORM%-windows-static %PACKAGES% > NUL -- cmd: del /s /q C:\Tools\vcpkg\installed\%PLATFORM%-windows-static\debug # Remove unused debug library before_build: - ps: clcache -M 536870912 - cmd: python build_msvc\msvc-autogen.py |