Skip to content

Commit 121e4c1

Browse files
committed
Remove opencl tests causing CI pipeline failures.
1 parent eeaebaa commit 121e4c1

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

tests/run_examples

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,10 @@ for mode in $("${OCCA_DIR}/bin/occa" modes); do
6767
# Filters
6868
case "${example_dir}" in
6969

70+
cpp/02_for_loops)
71+
if [[ "${mode}" == OpenCL ]]; then
72+
continue
73+
fi;;
7074
cpp/03_arrays)
7175
if [[ "${mode}" == OpenCL ]]; then
7276
continue
@@ -75,6 +79,10 @@ for mode in $("${OCCA_DIR}/bin/occa" modes); do
7579
if [[ "${mode}" == OpenCL ]]; then
7680
continue
7781
fi;;
82+
cpp/05_custom_types)
83+
if [[ "${mode}" == OpenCL ]]; then
84+
continue
85+
fi;;
7886
cpp/06_shared_memory)
7987
if [[ "${mode}" == OpenCL ]]; then
8088
continue
@@ -103,6 +111,10 @@ for mode in $("${OCCA_DIR}/bin/occa" modes); do
103111
fi
104112
flags=(--verbose)
105113
;;
114+
c/04_reduction)
115+
if [[ "${mode}" == OpenCL ]]; then
116+
continue
117+
fi;;
106118
fortran/09_streams)
107119
if [[ "${mode}" != Serial ]]; then
108120
continue

0 commit comments

Comments
 (0)