forked from typetools/checker-framework
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.travis-build.sh
executable file
·148 lines (119 loc) · 5.1 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
#!/bin/bash
# Optional argument $1 is one of:
# all, all-tests, jdk.jar, downstream, misc
# If it is omitted, this script does everything.
export GROUP=$1
if [[ "${GROUP}" == "" ]]; then
export GROUP=all
fi
if [[ "${GROUP}" != "all" && "${GROUP}" != "all-tests" && "${GROUP}" != "jdk.jar" && "${GROUP}" != "downstream" && "${GROUP}" != "misc" ]]; then
echo "Bad argument '${GROUP}'; should be omitted or one of: all, all-tests, jdk.jar, downstream, misc."
exit 1
fi
# Optional argument $2 is one of:
# downloadjdk, buildjdk
# If it is omitted, this script uses downloadjdk.
export BUILDJDK=$2
if [[ "${BUILDJDK}" == "" ]]; then
export BUILDJDK=buildjdk
fi
if [[ "${BUILDJDK}" != "buildjdk" && "${BUILDJDK}" != "downloadjdk" ]]; then
echo "Bad argument '${BUILDJDK}'; should be omitted or one of: downloadjdk, buildjdk."
exit 1
fi
# 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
SLUGOWNER=${TRAVIS_REPO_SLUG%/*}
if [[ "$SLUGOWNER" == "" ]]; then
SLUGOWNER=typetools
fi
./.travis-build-without-test.sh ${BUILDJDK}
# The above command builds or downloads the JDK, so there is no need for a
# subsequent command to build it except to test building it.
set -e
if [[ "${GROUP}" == "all-tests" || "${GROUP}" == "all" ]]; then
./gradlew allTests
# Moved example-tests-nobuildjdk out of all tests because it fails in
# the release script because the newest maven artifacts are not published yet.
./gradlew :checker:exampleTests
fi
if [[ "${GROUP}" == "downstream" || "${GROUP}" == "all" ]]; then
## downstream tests: projects that depend on the Checker Framework.
## These are here so they can be run by pull requests. (Pull requests
## currently don't trigger downstream jobs.)
## Not done in the Travis build, but triggered as a separate Travis project:
## * daikon-typecheck: (takes 2 hours)
# checker-framework-inference: 18 minutes
set +e
echo "Running: git ls-remote https://github.com/${SLUGOWNER}/checker-framework-inference.git &>-"
git ls-remote https://github.com/${SLUGOWNER}/checker-framework-inference.git &>-
if [ "$?" -ne 0 ]; then
CFISLUGOWNER=typetools
else
CFISLUGOWNER=${SLUGOWNER}
fi
set -e
echo "Running: (cd .. && git clone --depth 1 https://github.com/${CFISLUGOWNER}/checker-framework-inference.git)"
(cd .. && git clone --depth 1 https://github.com/${CFISLUGOWNER}/checker-framework-inference.git) || (cd .. && git clone --depth 1 https://github.com/${CFISLUGOWNER}/checker-framework-inference.git)
echo "... done: (cd .. && git clone --depth 1 https://github.com/${CFISLUGOWNER}/checker-framework-inference.git)"
export AFU=`pwd`/../annotation-tools/annotation-file-utilities
export PATH=$AFU/scripts:$PATH
(cd ../checker-framework-inference && ./gradlew dist test)
# plume-lib-typecheck: 30 minutes
set +e
echo "Running: git ls-remote https://github.com/${SLUGOWNER}/plume-lib.git &>-"
git ls-remote https://github.com/${SLUGOWNER}/plume-lib.git &>-
if [ "$?" -ne 0 ]; then
PLSLUGOWNER=mernst
else
PLSLUGOWNER=${SLUGOWNER}
fi
set -e
echo "Running: (cd .. && git clone --depth 1 https://github.com/${PLSLUGOWNER}/plume-lib.git)"
(cd .. && git clone https://github.com/${PLSLUGOWNER}/plume-lib.git) || (cd .. && git clone https://github.com/${PLSLUGOWNER}/plume-lib.git)
echo "... done: (cd .. && git clone --depth 1 https://github.com/${PLSLUGOWNER}/plume-lib.git)"
export CHECKERFRAMEWORK=`pwd`
(cd ../plume-lib/java && make check-types)
if [[ "${BUILDJDK}" = "downloadjdk" ]]; then
## If buildjdk, use "demos" below:
## * checker-framework.demos (takes 15 minutes)
./gradlew :checker:demosTests
fi
# sparta: 1 minute, but the command is "true"!
# TODO: requires Android installation (and at one time, it caused weird
# Travis hangs if enabled without Android installation).
# (cd .. && git clone --depth 1 https://github.com/${SLUGOWNER}/sparta.git)
# (cd ../sparta && ant jar all-tests)
fi
if [[ "${GROUP}" == "jdk.jar" || "${GROUP}" == "all" ]]; then
./gradlew :jdk8:buildJdk
## Run the tests for the type systems that use the annotated JDK
./gradlew IndexTest LockTest NullnessFbcTest OptionalTest
fi
if [[ "${GROUP}" == "misc" || "${GROUP}" == "all" ]]; then
## jdkany tests: miscellaneous tests that shouldn't depend on JDK version.
## (Maybe they don't even need the full ./.travis-build-without-test.sh ;
## for example they currently don't need the annotated JDK.)
set -e
# Code style and formatting
./gradlew checkStyle checkFormat
# Run error-prone
./gradlew runErrorProne
# Documentation
./gradlew allJavadoc
./gradlew javadocPrivate
make -C docs/manual all
# jsr308-langtools documentation (it's kept at Bitbucket rather than GitHub)
# Not just "make" because the invocations of "hevea -exec xxcharset.exe" fail.
# I cannot reproduce the problem locally and it isn't important enough to fix.
# make -C ../jsr308-langtools/doc
make -C ../jsr308-langtools/doc pdf
# HTML legality
./gradlew htmlValidate
fi