This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def clientPath = "" | |
pipeline { | |
agent { | |
node { | |
label "${params.NODE_NAME}" | |
} | |
} | |
environment{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#https://hub.docker.com/r/gableroux/unity3d/tags | |
#--- search from tag | |
ARG BASE_GABLEROUX_DOCKER=gableroux/unity3d:2018.4.20f1-android | |
FROM ${BASE_GABLEROUX_DOCKER} | |
ARG COMPONENTS="iOS" | |
#--- select version you want by this url. Paste url to DOWNLOAD_URL | |
#https://gitlab.com/gableroux/unity3d/-/blob/master/ci-generator/unity_versions.old.yml |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[PostProcessBuild] | |
public static void OnPostProcessBuild (BuildTarget target, string path) | |
{ | |
string localeString = "zh-hant"; | |
AddLanguage (path, localeString); | |
} | |
static void AddLanguage (string path, params string[] languages) | |
{ | |
var plistPath = Path.Combine (path, "Info.plist"); |