18 lines
386 B
PowerShell
18 lines
386 B
PowerShell
param(
|
|
[string]$ServerUrl = "http://localhost:8080",
|
|
[string]$PairingCode = "qmax-local-dev"
|
|
)
|
|
|
|
$ErrorActionPreference = "Stop"
|
|
|
|
dotnet test "$PSScriptRoot\..\QMax.slnx"
|
|
Push-Location "$PSScriptRoot\..\android"
|
|
try {
|
|
.\gradlew.bat :app:assembleDebug :app:assembleRelease --console=plain --no-daemon
|
|
}
|
|
finally {
|
|
Pop-Location
|
|
}
|
|
|
|
Write-Host "Smoke build checks completed."
|