forked from randoop/randoop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
56 lines (50 loc) · 2.06 KB
/
.travis.yml
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
sudo: false
language: generic
services:
- docker
# jdkany contains extra packages that permit it to be used to build the manual
matrix:
env:
- OS=ubuntu JDKVER=jdk7 GROUP=test
- OS=ubuntu JDKVER=jdk8 GROUP=test
- OS=ubuntu JDKVER=jdkany GROUP=misc
# - OS=fedora JDKVER=jdk8 GROUP=test
# - OS=centos JDKVER=jdk8 GROUP=test
before_script:
- docker pull mdernst/$OS-for-randoop-$JDKVER
# want more info when running tests and building manual
# NOTE: the tasks here should at least be a subset of build task dependency in build.gradle
# update that task if you change this list
script:
- REMOTE_ORIGIN_URL=`git config --get remote.origin.url`
- echo "JDKVER=${JDKVER}"
- echo "TRAVIS_BRANCH=${TRAVIS_BRANCH}"
- echo "REMOTE_ORIGIN_URL=${REMOTE_ORIGIN_URL}"
- echo "TRAVIS_EVENT_TYPE=${TRAVIS_EVENT_TYPE}"
- echo "TRAVIS_PULL_REQUEST=${TRAVIS_PULL_REQUEST}"
- echo "TRAVIS_PULL_REQUEST_BRANCH=${TRAVIS_PULL_REQUEST_BRANCH}"
- echo "TRAVIS_REPO_SLUG=${TRAVIS_REPO_SLUG}"
- echo "GROUP=${GROUP}"
- >-
docker run mdernst/$OS-for-randoop-$JDKVER /bin/bash -c "true &&
export JAVA_HOME=\`which javac|xargs readlink -f|xargs dirname|xargs dirname\` &&
if [ $TRAVIS_EVENT_TYPE = pull_request ] ; then
git clone --quiet --depth 9 $REMOTE_ORIGIN_URL randoop || git clone --quiet --depth 9 $REMOTE_ORIGIN_URL randoop
cd randoop
git fetch origin +refs/pull/$TRAVIS_PULL_REQUEST/merge
git checkout -qf FETCH_HEAD
git config user.email [email protected]
git config user.name Noone Cares
git remote add theupstream https://github.com/$TRAVIS_REPO_SLUG.git
git pull --depth 9 theupstream $TRAVIS_BRANCH || git pull --depth 9 theupstream $TRAVIS_BRANCH
else
git clone --quiet --depth 9 -b $TRAVIS_BRANCH $REMOTE_ORIGIN_URL randoop || git clone --quiet --depth 9 -b $TRAVIS_BRANCH $REMOTE_ORIGIN_URL randoop
cd randoop
fi &&
java -version &&
javac -version &&
export TRAVIS_REPO_SLUG=$TRAVIS_REPO_SLUG &&
export TRAVIS_BUILD_DIR=$TRAVIS_BUILD_DIR &&
./.travis-build.sh $GROUP"
git:
depth: 9