diff --git a/.ci/linux-steps.yaml b/.ci/linux-steps.yaml index d3d3f908..7b5806b2 100644 --- a/.ci/linux-steps.yaml +++ b/.ci/linux-steps.yaml @@ -75,7 +75,7 @@ steps: # Now build the examples, only c++. - script: | - for f in c++/*/*/*; do + for f in cpp/*/*/*; do dir=`dirname $f`; # TODO: the dataset cannot be loaded. diff --git a/.ci/macos-steps.yaml b/.ci/macos-steps.yaml index ee1e374d..d1aeb398 100644 --- a/.ci/macos-steps.yaml +++ b/.ci/macos-steps.yaml @@ -79,7 +79,7 @@ steps: # Now build the examples, only c++. - script: | - for f in c++/*/*/*; do + for f in cpp/*/*/*; do dir=`dirname $f`; # Remove the -fopenmp flag from the Makefile. sed -i '' 's/ -fopenmp//' $f;