mirror of
https://github.com/SoftEtherVPN/SoftEtherVPN.git
synced 2024-11-22 17:39:53 +03:00
AppVeyor: renew github token, renamed APPVEYOR_REPO_TAG to upper case,
added vpntest.exe to test memory
This commit is contained in:
parent
b8629f324f
commit
6640f05233
@ -44,6 +44,9 @@ for:
|
||||
- configure
|
||||
build_script:
|
||||
- nmake
|
||||
test_script:
|
||||
- ps: cd $env:APPVEYOR_BUILD_FOLDER
|
||||
- ps: .\.ci\appveyor-vpntest.ps1
|
||||
after_build:
|
||||
- 7z a "%APPVEYOR_BUILD_FOLDER%\build\%APPVEYOR_PROJECT_NAME%_%APPVEYOR_BUILD_VERSION%_Windows_x64_%CONFIGURATION%.zip" "%APPVEYOR_BUILD_FOLDER%\build\*.exe"
|
||||
- 7z a "%APPVEYOR_BUILD_FOLDER%\build\%APPVEYOR_PROJECT_NAME%_%APPVEYOR_BUILD_VERSION%_Windows_x64_%CONFIGURATION%.zip" "%APPVEYOR_BUILD_FOLDER%\build\hamcore.se2"
|
||||
@ -85,6 +88,6 @@ deploy:
|
||||
description: 'automatic release'
|
||||
provider: GitHub
|
||||
auth_token:
|
||||
secure: FJU1W6Li4W7h3mYJj206ybyhRvBqdSeiSoFJ4lhCkQl6n92ljSVnZiPKPtaSuP6i
|
||||
secure: AMFTEsa7hI1osVhKFo+e8ueIWyzP7dITIGVWkhCoOfHEnHaYBzz7acqrJD/qB0H8
|
||||
on:
|
||||
appveyor_repo_tag: true
|
||||
APPVEYOR_REPO_TAG: true
|
||||
|
18
.ci/appveyor-vpntest.ps1
Normal file
18
.ci/appveyor-vpntest.ps1
Normal file
@ -0,0 +1,18 @@
|
||||
$ErrorActionPreference = 'Stop'
|
||||
|
||||
# ('s', 'c', 'b', 'sm', 'cm') ??
|
||||
('s', 'c', 'b') | % {
|
||||
|
||||
[String] $mode = $_
|
||||
Write-Host "testing: $mode"
|
||||
|
||||
$t = (Write-Output "q\n" | & .\build\vpntest.exe $mode | Select-String -Pattern 'NO MEMORY LEAKS' -CaseSensitive)
|
||||
|
||||
if( ($t).Count -ne 1){
|
||||
Write-Error 'failed'
|
||||
return $false
|
||||
}else{
|
||||
Write-Host 'ok'
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue
Block a user