Store build as artifact in appveyor

7z is already available in path in appveyor
zip the build .exe files and store them ( appveyor retains for ~6 months)
This commit is contained in:
Ashesh 2020-05-10 17:19:47 +05:30 committed by GitHub
parent 54b20a25b9
commit 7ae70625f3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 0 deletions

View File

@ -39,3 +39,11 @@ before_build:
build_script: build_script:
- scons platform=%GD_PLATFORM% target=%TARGET% tools=%TOOLS% %OPTIONS% %EXTRA_ARGS% - scons platform=%GD_PLATFORM% target=%TARGET% tools=%TOOLS% %OPTIONS% %EXTRA_ARGS%
after_build:
- 7z a godot_build.zip bin\*.exe
artifacts:
- path: godot_build.zip
name: Build
type: zip