aboutsummaryrefslogtreecommitdiff
path: root/run_project_tests.py
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2021-01-06 14:46:19 -0800
committerDylan Baker <dylan@pnwbakers.com>2021-02-06 10:27:04 -0800
commit80ec157e5e02172cd6e2933bc1047fca07f176df (patch)
tree6871060a1a67d35a05209acb228dfe37bd5bff67 /run_project_tests.py
parentb28235428df69ba0a90a8f7c0f26db8527ec68a7 (diff)
downloadmeson-80ec157e5e02172cd6e2933bc1047fca07f176df.zip
meson-80ec157e5e02172cd6e2933bc1047fca07f176df.tar.gz
meson-80ec157e5e02172cd6e2933bc1047fca07f176df.tar.bz2
ci: Add bindgen to CI images
Diffstat (limited to 'run_project_tests.py')
-rwxr-xr-xrun_project_tests.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/run_project_tests.py b/run_project_tests.py
index 33641d7..14f135a 100755
--- a/run_project_tests.py
+++ b/run_project_tests.py
@@ -864,6 +864,10 @@ def skippable(suite, test):
if test.endswith('4 qt') and mesonlib.is_osx():
return False
+ # Bindgen isn't available in all distros
+ if test.endswith('12 bindgen'):
+ return False
+
# Other framework tests are allowed to be skipped on other platforms
return True