Skip to content

Commit

Permalink
CI: New check for detecting issues with the installation of public he…
Browse files Browse the repository at this point in the history
…aders
  • Loading branch information
piponazo committed Nov 16, 2018
1 parent ee28e8a commit 2269708
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions ci/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,15 @@ make -j2

make tests
make install

# Check for detecting issues with the installation of headers
if [ `ls install/include/exiv2/ | wc -l` > 10 ]; then
echo Headers installed correctly
else
echo There was some problem with the installation of the public headers
exit 1
fi

pushd .
cd bin
$EXIV2_VALGRIND ./unit_tests
Expand All @@ -40,3 +49,4 @@ popd
if [ -n "$COVERAGE" ]; then
bash <(curl -s https://codecov.io/bash)
fi

0 comments on commit 2269708

Please sign in to comment.