Browse Source

test/travis: add installation to the test

- only for gcc. It seems to fail on travis with clang o_0
Victor Seva 10 năm trước cách đây
mục cha
commit
d67c004005
1 tập tin đã thay đổi với 6 bổ sung0 xóa
  1. 6 0
      test/travis/build_travis.sh

+ 6 - 0
test/travis/build_travis.sh

@@ -23,3 +23,9 @@ for grp in ${PACKAGE_GROUPS}; do
 done
 done
 #echo "unit tests"
 #echo "unit tests"
 #make -C test/unit
 #make -C test/unit
+if [[ "$CC" =~ "gcc" ]] ; then
+	echo "make install"
+	sudo make install
+else
+	echo "skip make install step"
+fi