Removes _vs2019 from jenkins jobs and documentation (#5855)

Signed-off-by: Esteban Papp <81431996+amznestebanpapp@users.noreply.github.com>
This commit is contained in:
Esteban Papp
2021-11-30 11:10:02 -08:00
committed by GitHub
parent 879012b1ae
commit 7c30adb66c
17 changed files with 72 additions and 167 deletions
@@ -277,7 +277,7 @@ class AbstractResourceLocator(object):
def get_shader_compiler_path(self):
"""
Return path to shader compiler executable
ex. engine_root/dev/windows_vs2019/bin/profile/CrySCompileServer
ex. engine_root/dev/windows/bin/profile/CrySCompileServer
:return: path to CrySCompileServer executable
"""
return os.path.join(self.build_directory(), 'CrySCompileServer')
@@ -313,7 +313,7 @@ class AbstractResourceLocator(object):
def shader_compiler_config_file(self):
"""
Return path to the Shader Compiler config file
ex. engine_root/dev/windows_vs2019/bin/profile/config.ini
ex. engine_root/dev/windows/bin/profile/config.ini
:return: path to the Shader Compiler config file
"""
return os.path.join(self.build_directory(), 'config.ini')
@@ -321,7 +321,7 @@ class AbstractResourceLocator(object):
def shader_cache(self):
"""
Return path to the shader cache for the current build
ex. engine_root/dev/windows_vs2019/bin/profile/Cache
ex. engine_root/dev/windows/bin/profile/Cache
:return: path to the shader cache for the current build
"""
return os.path.join(self.build_directory(), 'Cache')
@@ -119,7 +119,7 @@ class AbstractWorkspaceManager:
def clear_bin(self):
"""
Clears the relative Bin folder (i.e. engine_root/dev/windows_vs2019/bin/profile/)
Clears the relative Bin folder (i.e. engine_root/dev/windows/bin/profile/)
:return: None
"""
if os.path.exists(self.paths.build_directory()):