diff --git a/appveyor.yml b/appveyor.yml index 245595f11..12645d604 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -18,15 +18,13 @@ install: - cd c:\pillow\winbuild\ - c:\python34\python.exe c:\pillow\winbuild\build_dep.py - c:\pillow\winbuild\build_deps.cmd -build_script: - '%PYTHON%\Scripts\pip.exe install wheel' +build_script: - '%PYTHON%\python.exe c:\pillow\winbuild\build.py --dist' - '%PYTHON%\python.exe c:\pillow\winbuild\build.py' - cd c:\pillow - dir dist\*.egg - '%PYTHON%\python.exe selftest.py --installed' -on_success: -- ps: Get-ChildItem .\dist\*.* | % { Push-AppveyorArtifact $_.FullName -FileName $_.Name } test_script: - cd c:\pillow - '%PYTHON%\Scripts\pip.exe install nose' @@ -37,7 +35,7 @@ artifacts: - path: pillow\dist\*.egg name: build after_test: - - ps: Get-ChildItem .\dist\*.egg | % { Push-AppveyorArtifact $_.FullName -FileName $_.Name } + - ps: Get-ChildItem .\dist\*.* | % { Push-AppveyorArtifact $_.FullName -FileName $_.Name } deploy: provider: S3 access_key_id: AKIAIRAXC62ZNTVQJMOQ @@ -46,4 +44,3 @@ deploy: bucket: pillow-nightly folder: win/$(APPVEYOR_BUILD_NUMBER)/ artifact: /.*egg/ -