mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 14:26:43 +00:00
a1e332bf7e
* Install MSYS2 and VS with choco * Install Windows SDK 8.1 requied for libvpx * Improve build time of the windows image using as much RUN layers as possible Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/1000>
17 lines
430 B
Batchfile
17 lines
430 B
Batchfile
@rem Copyright (C) Microsoft Corporation. All rights reserved.
|
|
@rem Licensed under the MIT license. See LICENSE.txt in the project root for license information.
|
|
|
|
@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!
|
|
)
|
|
)
|