forked from log2timeline/dftimewolf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
20 lines (17 loc) · 1.34 KB
/
appveyor.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
environment:
matrix:
- PYTHON: "C:\\Python27"
install:
- cmd: '"C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin\SetEnv.cmd" /x86 /release'
- ps: "[System.Net.ServicePointManager]::SecurityProtocol = [System.Net.SecurityProtocolType]::Tls12"
- ps: (new-object net.webclient).DownloadFile('https://bootstrap.pypa.io/get-pip.py', 'C:\Projects\get-pip.py')
- ps: (new-object net.webclient).DownloadFile('https://github.com/log2timeline/l2tbinaries/raw/main/win32/pywin32-220.win32-py2.7.exe', 'C:\Projects\pywin32-220.win32-py2.7.exe')
- ps: (new-object net.webclient).DownloadFile('https://github.com/log2timeline/l2tbinaries/raw/main/win32/WMI-1.4.9.win32.exe', 'C:\Projects\WMI-1.4.9.win32.exe')
- cmd: "%PYTHON%\\python.exe C:\\Projects\\get-pip.py"
- cmd: "%PYTHON%\\Scripts\\easy_install.exe C:\\Projects\\pywin32-220.win32-py2.7.exe"
- cmd: "%PYTHON%\\Scripts\\easy_install.exe C:\\Projects\\WMI-1.4.9.win32.exe"
- cmd: git clone https://github.com/log2timeline/l2tdevtools.git && move l2tdevtools ..\
- cmd: mkdir dependencies && set PYTHONPATH=..\l2tdevtools && "%PYTHON%\\python.exe" ..\l2tdevtools\tools\update.py --download-directory dependencies --machine-type x86 --msi-targetdir "%PYTHON%" --track dev certifi chardet idna pytz requests urllib3 funcsigs mock pbr six
build: off
test_script:
- "%PYTHON%\\python.exe run_tests.py"