Skip to content
Snippets Groups Projects
Commit 1e0d8161 authored by Raphael Defosseux's avatar Raphael Defosseux
Browse files

CI: little fix when assessing build status

parent 001163f6
No related branches found
No related tags found
No related merge requests found
......@@ -136,7 +136,12 @@ function check_on_vm_build {
echo "Checking build status"
echo "############################################################"
LOG_FILES=`ls $ARCHIVES_LOC/*.txt $ARCHIVES_LOC/*.xml`
if [[ "$VM_NAME" == *"-cppcheck"* ]]
then
LOG_FILES=`ls $ARCHIVES_LOC/*.txt $ARCHIVES_LOC/*.xml`
else
LOG_FILES=`ls $ARCHIVES_LOC/*.txt`
fi
STATUS=0
NB_FOUND_FILES=0
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment