Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/KhronosGroup/SPIRV-Cross.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans-Kristian Arntzen <post@arntzen-software.no>2021-03-12 14:51:53 +0300
committerHans-Kristian Arntzen <post@arntzen-software.no>2021-03-12 17:03:39 +0300
commit2e000a0be4d2af7fc0f48e37d3b99a93e90def48 (patch)
tree275b631ccd30a888472f66f4f69c8dcad1d30d83 /test_shaders.py
parent60aa24566e0189a83797abb7c3d0453b20e5f1f8 (diff)
Add GitHub Actions script.
Diffstat (limited to 'test_shaders.py')
-rwxr-xr-xtest_shaders.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/test_shaders.py b/test_shaders.py
index f73df409..574148f6 100755
--- a/test_shaders.py
+++ b/test_shaders.py
@@ -100,10 +100,11 @@ def get_shader_stats(shader):
def print_msl_compiler_version():
try:
subprocess.check_call(['xcrun', '--sdk', 'iphoneos', 'metal', '--version'])
- print('...are the Metal compiler characteristics.\n') # display after so xcrun FNF is silent
+ print('... are the Metal compiler characteristics.\n') # display after so xcrun FNF is silent
except OSError as e:
if (e.errno != errno.ENOENT): # Ignore xcrun not found error
raise
+ print('Metal SDK is not present.\n')
except subprocess.CalledProcessError:
pass