You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
1.0 KiB
Batchfile
46 lines
1.0 KiB
Batchfile
@ECHO OFF
|
|
REM
|
|
REM Copyright (c) Contributors to the Open 3D Engine Project.
|
|
REM For complete copyright and license terms please see the LICENSE at the root of this distribution.
|
|
REM
|
|
REM SPDX-License-Identifier: Apache-2.0 OR MIT
|
|
REM
|
|
REM
|
|
|
|
REM To get recursive folder creation
|
|
SETLOCAL EnableExtensions EnableDelayedExpansion
|
|
|
|
where /Q cmake
|
|
IF NOT %ERRORLEVEL%==0 (
|
|
ECHO [ci_build] CMake not found
|
|
GOTO :error
|
|
)
|
|
|
|
IF NOT "%COMMAND_CWD%"=="" (
|
|
ECHO [ci_build] Changing CWD to %COMMAND_CWD%
|
|
CD %COMMAND_CWD%
|
|
)
|
|
|
|
REM Ending the local environment to be able to propagate the TMP/TEMP variables to the calling script
|
|
ENDLOCAL
|
|
|
|
REM Jenkins does not defined TMP
|
|
IF "%TMP%"=="" (
|
|
IF "%WORKSPACE%"=="" (
|
|
SET TMP=%APPDATA%\Local\Temp
|
|
SET TEMP=%APPDATA%\Local\Temp
|
|
) ELSE (
|
|
SET TMP=%WORKSPACE%\Temp
|
|
SET TEMP=%WORKSPACE%\Temp
|
|
REM This folder may not be created in the workspace
|
|
IF NOT EXIST "!TMP!" (
|
|
MKDIR "!TMP!"
|
|
)
|
|
)
|
|
)
|
|
|
|
EXIT /b 0
|
|
|
|
:error
|
|
ENDLOCAL
|
|
EXIT /b 1 |