continuous-build.sh 315 B

1234567891011121314151617
  1. #!/bin/sh
  2. set -e
  3. if [ "${COVERITY_SCAN_BRANCH}" != 1 ]; then
  4. if [ "$OLD_BUILD" = "true" ]; then
  5. export SH=`which rc`
  6. git clean -x -d -f
  7. (cd "$TRAVIS_BUILD_DIR" && ./bootstrap.sh)
  8. build all
  9. else
  10. curl -L http://sevki.co/get-build -o util/build
  11. chmod +x util/build
  12. ./util/build -v //.:kernel
  13. fi
  14. fi