mirror of https://github.com/cutefishos/calamares
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
621 B
Bash
20 lines
621 B
Bash
#! /bin/sh
|
|
#
|
|
# Travis build driver script:
|
|
# - the regular CI runs, triggered by commits, run a script that builds
|
|
# and installs calamares, and then runs the tests.
|
|
# - the cronjob CI runs, triggered weekly, run a script that uses the
|
|
# coverity tools to submit a build. This is slightly more resource-
|
|
# intensive than the coverity add-on, but works on master.
|
|
#
|
|
D=`dirname "$0"`
|
|
test -d "$D" || exit 1
|
|
test -x "$D/travis-continuous.sh" || exit 1
|
|
test -x "$D/travis-coverity.sh" || exit 1
|
|
|
|
if test "$TRAVIS_EVENT_TYPE" = "cron" ; then
|
|
exec "$D/travis-coverity.sh"
|
|
else
|
|
exec "$D/travis-continuous.sh"
|
|
fi
|