travis-continuous.sh 400 B

12345678910111213141516
  1. #! /bin/sh
  2. #
  3. # Travis CI script for use on every-commit:
  4. # - build and install Calamares
  5. #
  6. test -n "$BUILDDIR" || exit 1
  7. test -n "$SRCDIR" || exit 1
  8. test -d $BUILDDIR || exit 1
  9. test -d $SRCDIR || exit 1
  10. test -f $SRCDIR/CMakeLists.txt || exit 1
  11. cd $BUILDDIR || exit 1
  12. cmake -DWEBVIEW_FORCE_WEBKIT=1 -DKDE_INSTALL_USE_QT_SYS_PATHS=ON $SRCDIR && make -j2 && make install DESTDIR=/build/INSTALL_ROOT