Merge pull request #1867 from RadWolfie/restore-appveyor-change

Restore Debug Build for AppVeyor
This commit is contained in:
Luke Usher 2020-04-12 17:20:16 +01:00 committed by GitHub
commit 90620f7654
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 5 deletions

View File

@ -23,6 +23,7 @@ image: # If this is modified, please also update the build script
configuration: # The builds will be run in this order
- Release
- Debug
before_build:
- |-
@ -36,8 +37,10 @@ build_script:
on_success:
- ps: |-
cd bin\$env:configuration
7z u "$env:configuration.zip" ..\..\..\COPYING ..\..\..\README.md
7z u "$env:configuration.zip" Cxbx.exe glew32.dll subhook.dll SDL2.dll
7z u "$env:configuration.zip" cxbxr-debugger.exe capstone.dll cs_x86.dll
Get-ChildItem .\*.zip | % { Push-AppveyorArtifact $_.FullName -FileName $_.Name }
If ($env:configuration -eq 'Release') {
cd bin\$env:configuration
7z u "$env:configuration.zip" ..\..\..\COPYING ..\..\..\README.md
7z u "$env:configuration.zip" Cxbx.exe glew32.dll subhook.dll SDL2.dll
7z u "$env:configuration.zip" cxbxr-debugger.exe capstone.dll cs_x86.dll
Get-ChildItem .\*.zip | % { Push-AppveyorArtifact $_.FullName -FileName $_.Name }
}