diff options
| author | Stephen <stephengroat@users.noreply.github.com> | 2019-01-10 14:23:14 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-01-10 14:23:14 -0800 |
| commit | d2c47d785fe31ee9d133cb3d4c1abd7a41ee44cd (patch) | |
| tree | 83f59c93e7e65ed50854bc4cda1a2fb815eca882 /.appveyor.yml | |
| parent | 3f13ac124c01da64e96e17807843894cabd4112a (diff) | |
| download | focaccia-miasm-d2c47d785fe31ee9d133cb3d4c1abd7a41ee44cd.tar.gz focaccia-miasm-d2c47d785fe31ee9d133cb3d4c1abd7a41ee44cd.zip | |
use python install specific pip
Diffstat (limited to '.appveyor.yml')
| -rw-r--r-- | .appveyor.yml | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/.appveyor.yml b/.appveyor.yml index fc125908..da36f555 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -11,7 +11,6 @@ environment: APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017 PLATFORM_TOOLSET: v141 PYTHON: c:\Python27 - Z3_PKG_NAME: z3-4.6.0-x86-win - platform: x64 APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017 @@ -19,15 +18,14 @@ environment: PYTHON: c:\Python27-x64 Z3_INCLUDE_DIRS: c:\projects\triton\build\z3-4.6.0-x64-win\include Z3_LIBRARIES: c:\projects\triton\build\z3-4.6.0-x64-win\bin\libz3.lib - Z3_PKG_NAME: z3-4.6.0-x64-win # on_finish: # - ps: $blockRdp = $true; iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1')) install: - cmd: cd c:\projects\miasm - - cmd: pip install -r requirements.txt - - cmd: pip install -r optional_requirements.txt + - cmd: "%PYTHON%\\pip.exe install -r requirements.txt" + - cmd: "%PYTHON%\\pip.exe install -r optional_requirements.txt" build_script: - cmd: if "%platform%"=="Win32" call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" x86 @@ -37,8 +35,6 @@ build_script: - "%PYTHON%\\python.exe setup.py install" test_script: - - cmd: set PYTHONPATH=c:\projects\miasm\build\%Z3_PKG_NAME%\bin\python - - cmd: set PATH=c:\projects\miasm\build\%Z3_PKG_NAME%\bin;%PATH% - cmd: cd c:\projects\miasm\test - "%PYTHON%\\python.exe test_all.py" |