Jenkins_Pipeline_Library/vars/BuildAndroid.groovy
2026-03-07 15:07:06 +08:00

16 lines
514 B
Groovy

//=================================================================
// Byway Studios Inc. Confidential Information.
// Copyright Byway Studios Inc. All rights reserved
//=================================================================
def call(config)
{
echo("clear AB begin")
//Clean any previously build asset bundles
bat """
if exist "${WORKSPACE}\\AB" del /F /S /Q "${WORKSPACE}\\AB\\*"
"""
echo("execUnityMethod begin")
execUnityMethod_Windows("${config.execUnityMethod}")
}