diff options
| author | Stephen <stephengroat@users.noreply.github.com> | 2019-01-10 13:35:42 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-01-10 13:35:42 -0800 |
| commit | 3f13ac124c01da64e96e17807843894cabd4112a (patch) | |
| tree | c346e9ed90517c9c6f7fa7e1ba88e4debf3cc64f | |
| parent | b838035d8c5708a01fdd152ed6a0988b68e455c1 (diff) | |
| download | focaccia-miasm-3f13ac124c01da64e96e17807843894cabd4112a.tar.gz focaccia-miasm-3f13ac124c01da64e96e17807843894cabd4112a.zip | |
use pip in appveyor
| -rw-r--r-- | .appveyor.yml | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/.appveyor.yml b/.appveyor.yml index 1a2c6ef9..fc125908 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -26,15 +26,8 @@ environment: install: - cmd: cd c:\projects\miasm - - cmd: mkdir build - - cmd: cd build - - cmd: echo Downloading z3... - - cmd: appveyor DownloadFile https://github.com/Z3Prover/z3/releases/download/z3-4.6.0/%Z3_PKG_NAME%.zip - - cmd: 7z x %Z3_PKG_NAME%.zip - - "%PYTHON%\\Scripts\\pip.exe install pyparsing llvmlite" - - cmd: git clone https://github.com/serpilliere/elfesteem - - cmd: cd elfesteem - - "%PYTHON%\\python.exe setup.py install" + - cmd: pip install -r requirements.txt + - cmd: pip 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 |