ci: appveyor: run automated_tests.sh
This commit is contained in:
parent
16b2db5732
commit
caac229b2b
21
appveyor.yml
21
appveyor.yml
|
|
@ -15,6 +15,9 @@ build_script:
|
|||
|
||||
$env:Path += ";C:\cygwin64\bin"
|
||||
|
||||
# For sha256sum
|
||||
$env:Path += ";C:\Program Files\Git\usr\bin"
|
||||
|
||||
mkdir cmakebuild
|
||||
|
||||
cd cmakebuild
|
||||
|
|
@ -43,7 +46,25 @@ build_script:
|
|||
|
||||
.\light\Release\testlight.exe
|
||||
|
||||
if ( $? -eq $false ) {
|
||||
throw "testlight failed"
|
||||
}
|
||||
|
||||
.\qbsp\Release\testqbsp.exe
|
||||
|
||||
if ( $? -eq $false ) {
|
||||
throw "testqbsp failed"
|
||||
}
|
||||
|
||||
$env:Path += ";$(pwd)\qbsp\Release;$(pwd)\vis\Release;$(pwd)\light\Release"
|
||||
|
||||
cd ..\testmaps
|
||||
|
||||
. "C:\Program Files\Git\usr\bin\bash.exe" .\automatated_tests.sh
|
||||
|
||||
if ( $? -eq $false ) {
|
||||
throw "automatated_tests.sh failed"
|
||||
}
|
||||
artifacts:
|
||||
- path: cmakebuild\*.zip
|
||||
deploy:
|
||||
|
|
|
|||
Loading…
Reference in New Issue