Skip to content

Commit

Permalink
commented out push_artifacts, artifacts section should suffice
Browse files Browse the repository at this point in the history
  • Loading branch information
jakoch committed Jan 24, 2019
1 parent f517a46 commit 629049d
Showing 1 changed file with 11 additions and 12 deletions.
23 changes: 11 additions & 12 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,33 +115,32 @@ after_build:
- call %APPVEYOR_BUILD_FOLDER%\build\appveyor\copy-boost-to-includes.bat
- cd C:\projects\fifengine-dependencies\includes
- 7z a -tzip -mx9 "%APPVEYOR_BUILD_FOLDER%\libfife-dependencies-%APPVEYOR_BUILD_VERSION%-%COMPILER%-%platform%.zip"
- appveyor PushArtifact "%APPVEYOR_BUILD_FOLDER%\libfife-dependencies-%APPVEYOR_BUILD_VERSION%-%COMPILER%-%platform%.zip"
#- appveyor PushArtifact "%APPVEYOR_BUILD_FOLDER%\libfife-dependencies-%APPVEYOR_BUILD_VERSION%-%COMPILER%-%platform%.zip"

# package libfife artifact
- cd c:\fife\install
- 7z a -tzip -mx9 "%APPVEYOR_BUILD_FOLDER%\libfife-%APPVEYOR_BUILD_VERSION%-%COMPILER%-%platform%.zip"
- appveyor PushArtifact "%APPVEYOR_BUILD_FOLDER%\libfife-%APPVEYOR_BUILD_VERSION%-%COMPILER%-%platform%.zip"
#- appveyor PushArtifact "%APPVEYOR_BUILD_FOLDER%\libfife-%APPVEYOR_BUILD_VERSION%-%COMPILER%-%platform%.zip"

# package Python Installer artifact
#PyCEGUI installs its dlls itself
#- copy C:\projects\fifengine-dependencies\includes\bin\*.dll "%APPVEYOR_BUILD_FOLDER%\engine\python\fife"
# package Python Installer artifacts (PyCEGUI installs its dlls itself)
- copy C:\projects\build\*.py "%APPVEYOR_BUILD_FOLDER%\engine\python\fife" /y
- copy C:\projects\build\Release\*.* "%APPVEYOR_BUILD_FOLDER%\engine\python\fife" /y
- copy C:\projects\fifengine-dependencies\includes\bin\*.dll "%APPVEYOR_BUILD_FOLDER%\engine\python\fife"
- dir "%APPVEYOR_BUILD_FOLDER%\engine\python\fife\" /s
- cd %APPVEYOR_BUILD_FOLDER%
- python setup.py set_metadata --version=0.4.2 bdist_msi --target-version="%PYTHON_VERSION%"
- python setup.py set_metadata --version=0.4.2 bdist_dumb --format=zip
- dir %APPVEYOR_BUILD_FOLDER%\dist
- appveyor PushArtifact "%APPVEYOR_BUILD_FOLDER%\dist\libfife-0.4.2.win32-py%PYTHON_VERSION%.msi"
- appveyor PushArtifact "%APPVEYOR_BUILD_FOLDER%\dist\libfife-0.4.2.win32.zip"

#- dir C:\projects\build /s
#- dir "%APPVEYOR_BUILD_FOLDER%\engine\python\fife\" /s
#- appveyor PushArtifact "%APPVEYOR_BUILD_FOLDER%\dist\libfife-0.4.2.win32-py%PYTHON_VERSION%.msi"
#- appveyor PushArtifact "%APPVEYOR_BUILD_FOLDER%\dist\libfife-0.4.2.win32.zip"

artifacts:
- path: 'libfife-dependencies-*.zip'
name: Dependencies
- path: 'libfife-*.zip'
name: LibFife
- path: 'dist\libfife-*py%PYTHON_VERSION%.msi'
name: Python%PYTHON_VERSION%Installer
name: Python%PYTHON_VERSION%-Installer
- path: 'dist\libfife-0.4.2.win32.zip'
name: Python%PYTHON_VERSION%-zip

Expand All @@ -151,7 +150,7 @@ deploy:
release: 'Fifengine $(APPVEYOR_REPO_TAG_NAME)'
tag: $(APPVEYOR_REPO_TAG_NAME)
description: '[**Changelog**](https://github.com/fifengine/fifengine/blob/master/CHANGELOG.md)'
artifact: Dependencies, LibFife, Python%PYTHON_VERSION%Installer, Python%PYTHON_VERSION%-zip
artifact: Dependencies, LibFife, Python%PYTHON_VERSION%-Installer, Python%PYTHON_VERSION%-zip
draft: false
prerelease: false
force_update: true # overwrite files of existing release on GitHub
Expand Down

0 comments on commit 629049d

Please sign in to comment.