mirror of
				https://github.com/Icinga/icinga2.git
				synced 2025-10-31 03:03:52 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			28 lines
		
	
	
		
			614 B
		
	
	
	
		
			PowerShell
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			614 B
		
	
	
	
		
			PowerShell
		
	
	
	
	
	
| if (-not (Test-Path env:ICINGA2_BUILDPATH)) {
 | |
|   $env:ICINGA2_BUILDPATH = 'build'
 | |
| }
 | |
| 
 | |
| [string]$pwd = Get-Location
 | |
| 
 | |
| if (-not (Test-Path $env:ICINGA2_BUILDPATH)) {
 | |
|   Write-Host "Path '$pwd\$env:ICINGA2_BUILDPATH' does not exist!"
 | |
|   exit 1
 | |
| }
 | |
| 
 | |
| if (-not (Test-Path env:CMAKE_PATH)) {
 | |
|   $env:CMAKE_PATH = 'C:\Program Files\CMake\bin'
 | |
| }
 | |
| if (-not ($env:PATH -contains $env:CMAKE_PATH)) {
 | |
|   $env:PATH = $env:CMAKE_PATH + ';' + $env:PATH
 | |
| }
 | |
| 
 | |
| cd "$env:ICINGA2_BUILDPATH"
 | |
| 
 | |
| ctest.exe -C RelWithDebInfo -T test -O $env:ICINGA2_BUILDPATH/Test.xml --output-on-failure
 | |
| if ($lastexitcode -ne 0) {
 | |
|   cd ..
 | |
|   exit $lastexitcode
 | |
| }
 | |
| 
 | |
| cd ..
 |