mirror of
https://github.com/microsoft/vscode.git
synced 2026-05-15 21:01:05 +01:00
8da5adecfc
Co-authored-by: Copilot <copilot@github.com>
52 lines
1.0 KiB
Batchfile
52 lines
1.0 KiB
Batchfile
@echo off
|
|
setlocal enabledelayedexpansion
|
|
|
|
set ROOT=%~dp0..
|
|
set CONTAINER=
|
|
set ARCH=amd64
|
|
set REGISTRY=vscodehub.azurecr.io/vscode-linux-build-agent/sanity-tests
|
|
set ARGS=
|
|
|
|
:parse_args
|
|
if "%~1"=="" goto :done_parsing
|
|
if "%~1"=="--container" (
|
|
set CONTAINER=%~2
|
|
shift & shift
|
|
goto :parse_args
|
|
)
|
|
if "%~1"=="--arch" (
|
|
set ARCH=%~2
|
|
shift & shift
|
|
goto :parse_args
|
|
)
|
|
set "ARGS=!ARGS! %~1"
|
|
shift
|
|
goto :parse_args
|
|
|
|
:done_parsing
|
|
if "%CONTAINER%"=="" (
|
|
echo Error: --container is required
|
|
exit /b 1
|
|
)
|
|
|
|
set HOST_ARCH=amd64
|
|
if "%PROCESSOR_ARCHITECTURE%"=="ARM64" set HOST_ARCH=arm64
|
|
if not "%ARCH%"=="%HOST_ARCH%" (
|
|
echo Setting up QEMU emulation for %ARCH% on %HOST_ARCH% host
|
|
docker run --privileged --rm tonistiigi/binfmt --install all >nul 2>&1
|
|
)
|
|
|
|
set IMAGE=%REGISTRY%:%CONTAINER%-%ARCH%
|
|
|
|
echo Pulling container image: %IMAGE%
|
|
docker pull --platform "linux/%ARCH%" "%IMAGE%"
|
|
|
|
echo Running sanity tests in container
|
|
docker run ^
|
|
--rm ^
|
|
--platform "linux/%ARCH%" ^
|
|
--volume "%ROOT%:/root" ^
|
|
--entrypoint sh ^
|
|
"%IMAGE%" ^
|
|
/root/containers/entrypoint.sh %ARGS%
|