mirror of
https://github.com/elastic/logstash.git
synced 2025-04-21 13:18:16 -04:00
48 lines
1.1 KiB
Batchfile
48 lines
1.1 KiB
Batchfile
@echo off
|
|
setlocal enabledelayedexpansion
|
|
|
|
if "%WORKSPACE%" == "" (
|
|
echo Error: environment variable WORKSPACE must be defined. Aborting..
|
|
exit /B 1
|
|
)
|
|
|
|
:: see if %WORKSPACE% is alread mapped to a drive
|
|
for /f "tokens=1* delims==> " %%G IN ('subst') do (
|
|
set sdrive=%%G
|
|
:: removing extra space
|
|
set sdrive=!sdrive:~0,2!
|
|
set spath=%%H
|
|
|
|
if /I "!spath!" == "%WORKSPACE%" (
|
|
set use_drive=!sdrive!
|
|
goto :found_drive
|
|
)
|
|
)
|
|
|
|
:: no existing mapping
|
|
:: try to assign "%WORKSPACE%" to the first drive letter which works
|
|
for %%i in (A,B,C,D,E,F,G,H,I,J,K,L,M,N,O,P,Q,R,S,T,U,V,W,X,Y,Z) do (
|
|
set "drive=%%i:"
|
|
subst !drive! "%WORKSPACE%" >nul
|
|
if not errorlevel 1 (
|
|
set use_drive=!drive!
|
|
goto :found_drive
|
|
)
|
|
)
|
|
|
|
echo Error: unable to subst drive to path %WORKSPACE%. Aborting...
|
|
exit /B 1
|
|
|
|
:found_drive
|
|
echo Using drive !use_drive! for %WORKSPACE%
|
|
|
|
:: change current directory to that drive
|
|
!use_drive!
|
|
|
|
echo Running core tests..
|
|
call .\gradlew.bat test --console=plain
|
|
|
|
if errorlevel 1 (
|
|
echo Error: failed to run core tests. Aborting..
|
|
exit /B 1
|
|
)
|