File tree Expand file tree Collapse file tree 1 file changed +28
-0
lines changed
Expand file tree Collapse file tree 1 file changed +28
-0
lines changed Original file line number Diff line number Diff line change 1+ version : ' {build}'
2+ pull_requests :
3+ do_not_increment_build_number : true
4+ environment :
5+ ProjectVersion : build$(APPVEYOR_BUILD_VERSION)
6+ matrix :
7+ - PYTHON : C:\PYTHON36
8+ install :
9+ - ps : ' if(Test-Path env:APPVEYOR_REPO_TAG_NAME) {$env:ProjectVersion=$env:APPVEYOR_REPO_TAG_NAME}'
10+ - ' %PYTHON%\python.exe --version'
11+ - ' %PYTHON%\Scripts\pip install pyinstaller'
12+ - ' %PYTHON%\Scripts\pip install markdown'
13+ - ' %PYTHON%\python.exe -m markdown README.md > README.html'
14+ - ' %PYTHON%\Scripts\pyinstaller bundle\OoTRandomizer.spec'
15+ - ' mkdir dist\OoTRandomizer\ext'
16+ - ' move dist\OoTRandomizer\*.pyd dist\OoTRandomizer\ext'
17+ - ' move dist\OoTRandomizer\tcl*.dll dist\OoTRandomizer\ext'
18+ - ' move dist\OoTRandomizer\tk*.dll dist\OoTRandomizer\ext'
19+ - ps : ' $env:OoTR_Version= &"$env:PYTHON\python.exe" -c "import Main; import re; print(re.match('' [0-9]+\\.[0-9]+\\.[0-9]+'' ,Main.__version__).group(0))"'
20+ - ' "%WIX%\bin\heat.exe" dir "dist\OoTRandomizer" -sfrag -srd -suid -dr INSTALLDIR -cg OoTRFiles -ag -template fragment -t bundle\components.xslt -out build\components.wxs'
21+ - ' "%WIX%\bin\candle.exe" -out build\ bundle\*.wxs build\*.wxs'
22+ - ' "%WIX%\bin\light.exe" -ext WixUIExtension build\*.wixobj -o dist\OoTRandomizer-Installer-%ProjectVersion%-win32.msi -b dist\OoTRandomizer'
23+ build : off
24+ artifacts :
25+ - path : dist/OoTRandomizer*.msi
26+ name : OoTRandomizer-Installer-$(ProjectVersion)-win32.msi
27+ - path : dist/OoTRandomizer/
28+ name : OoTRandomizer-Raw-$(ProjectVersion)-win32.zip
You can’t perform that action at this time.
0 commit comments