-
Notifications
You must be signed in to change notification settings - Fork 355
/
.travis-build.sh
executable file
·72 lines (53 loc) · 1.71 KB
/
.travis-build.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
#!/bin/bash
echo "Entering $(cd "$(dirname "$0")" >/dev/null 2>&1 && pwd -P)/$(basename "$0") in $(pwd)"
# Fail the whole script if any command fails
set -e
## Diagnostic output
# Output lines of this script as they are read.
set -o verbose
# Output expanded lines of this script as they are executed.
set -o xtrace
export SHELLOPTS
###
### Argument parsing
###
# Optional argument $1 defaults to "all".
export GROUP=$1
if [[ "${GROUP}" == "" ]]; then
export GROUP=all
fi
###
### Build the Checker Framework
###
export CHECKERFRAMEWORK="${CHECKERFRAMEWORK:-$(pwd -P)}"
echo "CHECKERFRAMEWORK=$CHECKERFRAMEWORK"
ROOTDIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
SCRIPTDIR=$ROOTDIR/checker/bin-devel/
# For debugging
(cd "$CHECKERFRAMEWORK" && ./gradlew getPlumeScripts)
"${SCRIPTDIR}/plume-scripts/ci-info" typetools
eval $("${SCRIPTDIR}/plume-scripts/ci-info" typetools)
source "$SCRIPTDIR/clone-related"
###
### Run the test
###
echo "In checker-framework/.travis-build.sh GROUP=$GROUP"
### TESTS OF THIS REPOSITORY
case $GROUP in
all)
# Run cftests-junit, cftests-nonjunit, and cftests-inference separately,
# because cftests-all takes too long to run on Travis.
"$SCRIPTDIR/test-cftests-junit.sh"
"$SCRIPTDIR/test-cftests-nonjunit.sh"
"$SCRIPTDIR/test-cftests-inference.sh"
"$SCRIPTDIR/test-misc.sh"
"$SCRIPTDIR/test-typecheck.sh"
"$SCRIPTDIR/test-plume-lib.sh"
"$SCRIPTDIR/test-daikon.sh"
"$SCRIPTDIR/test-guava.sh"
"$SCRIPTDIR/test-downstream.sh"
;;
*)
"${SCRIPTDIR}/test-${GROUP}.sh"
esac
echo Exiting "$(cd "$(dirname "$0")" >/dev/null 2>&1 && pwd -P)/$(basename "$0") in $(pwd)"