mirror of
https://gitlab.freedesktop.org/dbus/dbus.git
synced 2025-12-24 12:20:07 +01:00
Based on GStreamer & Mesa freedesktop gitlab CI, use the Windows 1809 runner provided by the GStreamer Foundation. https://www.freedesktop.org/wiki/Infrastructure/ Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
18 lines
497 B
Batchfile
18 lines
497 B
Batchfile
@rem Copyright (C) Microsoft Corporation. All rights reserved.
|
|
@rem https://github.com/MicrosoftDocs/visualstudio-docs/blob/main/docs/install/advanced-build-tools-container.md#install-script
|
|
@rem Licensed under the MIT license.
|
|
|
|
@if not defined _echo echo off
|
|
setlocal enabledelayedexpansion
|
|
|
|
call %*
|
|
if "%ERRORLEVEL%"=="3010" (
|
|
exit /b 0
|
|
) else (
|
|
if not "%ERRORLEVEL%"=="0" (
|
|
set ERR=%ERRORLEVEL%
|
|
call C:\TEMP\collect.exe -zip:C:\vslogs.zip
|
|
|
|
exit /b !ERR!
|
|
)
|
|
)
|