14 lines
688 B
Plaintext
14 lines
688 B
Plaintext
//=================================================================
|
|
// Byway Studios Inc. Confidential Information.
|
|
// Copyright Byway Studios Inc. All rights reserved
|
|
//=================================================================
|
|
|
|
// The configuration is done in Jenkins -> Manage Jenkins -> Configure System -> Global Pipeline Libraries
|
|
@Library("my-shared-lib") _
|
|
|
|
Pipeline_prod(
|
|
alwaysClearPackageCache: false, // always clear the Library/PackageCache before running Unity commands
|
|
winbakeLabel: "unity_2022_3_prod", // optional node labels. Valid entries: macbakeLabel, linuxbakeLabel, winbakeLabel, syncLabel
|
|
execUnityMethod:"MyBuildTool.StartBuildAndroid_prod",
|
|
)
|