diff --git a/.teamcity/_Self.kt/buildTypes/CreateUniversalBuilds.kt b/.teamcity/_Self.kt/buildTypes/CreateUniversalBuilds.kt index 680f7ba1..1e92d6a0 100644 --- a/.teamcity/_Self.kt/buildTypes/CreateUniversalBuilds.kt +++ b/.teamcity/_Self.kt/buildTypes/CreateUniversalBuilds.kt @@ -22,7 +22,7 @@ class UniversalBuild() : BuildType({ param("x64-bin-path", "bin/macOS/x64") param("arm64-bin-path", "bin/macOS/arm64") text("file-matchers", - "-m '*.so:%system.teamcity.build.workingDir%/lib' -m '*.dylib:%system.teamcity.build.workingDir%/lib' -m '*.a:%system.teamcity.build.workingDir%/lib'", + "-m '*.so:%system.teamcity.build.workingDir%/lib' -m '*.dylib:%system.teamcity.build.workingDir%/lib' -m '*.a:%system.teamcity.build.workingDir%/lib' -m 'ShaderCompiler*:%system.teamcity.build.workingDir%/shadercompiler/bin'", label = "lipo-build matchers", description = """ -m '*.so:lib' to tell the tool to lipo together .so files and output the fat binaries to lib/. diff --git a/.teamcity/_Self.kt/buildTypes/PublishToPerforce.kt b/.teamcity/_Self.kt/buildTypes/PublishToPerforce.kt index 56d5cdc0..a090a92a 100644 --- a/.teamcity/_Self.kt/buildTypes/PublishToPerforce.kt +++ b/.teamcity/_Self.kt/buildTypes/PublishToPerforce.kt @@ -39,7 +39,7 @@ class Publish(perforce_publish_path: String) : BuildType({ select("eve_branch_type", "sandbox", label = "Branch type", description = "The type of branch to publish into", display = ParameterDisplay.PROMPT, options = listOf("Sandbox" to "sandbox", "Development" to "development", "Release" to "release", "Staging" to "staging", "Stream" to "")) param("env.TC_PERFORCE_PATH_TO_PUBLISH_INTO", "%perforce_path_to_publish_into%") - param("env.EXECUTABLE_FILENAMES_MATCH", "") + param("env.EXECUTABLE_FILENAMES_MATCH", "ShaderCompiler") select("reverse.dep.*.env.VISUAL_STUDIO_PLATFORM_TOOLSET", "v141", label = "Visual Studio Platform Toolset", description = "Specify the toolset for the build. e.g. v141 or v143.", display = ParameterDisplay.PROMPT, options = listOf("v141 (2017)" to "v141", "v143 (2022)" to "v143"))