mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
44 lines
1.2 KiB
PowerShell
44 lines
1.2 KiB
PowerShell
# For now, we only have one script.
|
|
$jUnit = Join-Path $env:TEMP 'self-test-junit-0.xml'
|
|
|
|
$tests = @(
|
|
'^assets'
|
|
'^autoupdate'
|
|
'^dynamic import.*development'
|
|
'client refresh for application code'
|
|
) -Join '|'
|
|
|
|
Write-Host "Running: $tests" -ForegroundColor Yellow
|
|
Write-Host "Excluded: $env:SELF_TEST_EXCLUDE" -ForegroundColor Yellow
|
|
|
|
.\meteor.bat self-test `
|
|
--retries 2 `
|
|
--junit "$jUnit" `
|
|
--exclude "$env:SELF_TEST_EXCLUDE" `
|
|
"$tests" `
|
|
'2>&1'
|
|
$selfTestExitCode = $LASTEXITCODE
|
|
|
|
If ($selfTestExitCode -eq 0) {
|
|
Write-Host "Success!" -ForegroundColor Green
|
|
} else {
|
|
Write-Host "FAILURE! (Exit: $selfTestExitCode)" -ForegroundColor Red
|
|
}
|
|
|
|
Write-Host "Uploading JUnit test results..." -ForegroundColor Magenta
|
|
$wc = New-Object 'System.Net.WebClient'
|
|
Get-ChildItem $env:TEMP 'self-test-junit-*.xml' | Foreach-Object {
|
|
Write-Host " - $($_.FullName)" -ForegroundColor Magenta
|
|
Write-Host " - as Artifact..." -ForegroundColor Magenta
|
|
Push-AppveyorArtifact $_.FullName
|
|
Write-Host " - as Test Results..." -ForegroundColor Magenta
|
|
$artifactPostUrl = `
|
|
"https://ci.appveyor.com/api/testresults/junit/",
|
|
$env:APPVEYOR_JOB_ID -Join ''
|
|
$wc.UploadFile($artifactPostUrl, ($_.FullName))
|
|
}
|
|
|
|
If ($selfTestExitCode -ne 0) {
|
|
Exit $selfTestExitCode
|
|
}
|