Skip to content

Commit

Permalink
I think this got deleted in error?
Browse files Browse the repository at this point in the history
  • Loading branch information
AmazingAmpharos authored Jun 22, 2018
1 parent e1136ae commit f9abb00
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
version: '{build}'
pull_requests:
do_not_increment_build_number: true
environment:
ProjectVersion: build$(APPVEYOR_BUILD_VERSION)
matrix:
- PYTHON: C:\PYTHON36
install:
- ps: 'if(Test-Path env:APPVEYOR_REPO_TAG_NAME) {$env:ProjectVersion=$env:APPVEYOR_REPO_TAG_NAME}'
- '%PYTHON%\python.exe --version'
- '%PYTHON%\Scripts\pip install pyinstaller'
- '%PYTHON%\Scripts\pip install markdown'
- '%PYTHON%\python.exe -m markdown README.md > README.html'
- '%PYTHON%\Scripts\pyinstaller bundle\OoTRandomizer.spec'
- 'mkdir dist\OoTRandomizer\ext'
- 'move dist\OoTRandomizer\*.pyd dist\OoTRandomizer\ext'
- 'move dist\OoTRandomizer\tcl*.dll dist\OoTRandomizer\ext'
- 'move dist\OoTRandomizer\tk*.dll dist\OoTRandomizer\ext'
- 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))"'
- '"%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'
- '"%WIX%\bin\candle.exe" -out build\ bundle\*.wxs build\*.wxs'
- '"%WIX%\bin\light.exe" -ext WixUIExtension build\*.wixobj -o dist\OoTRandomizer-Installer-%ProjectVersion%-win32.msi -b dist\OoTRandomizer'
build: off
artifacts:
- path: dist/OoTRandomizer*.msi
name: OoTRandomizer-Installer-$(ProjectVersion)-win32.msi
- path: dist/OoTRandomizer/
name: OoTRandomizer-Raw-$(ProjectVersion)-win32.zip

0 comments on commit f9abb00

Please sign in to comment.