Skip to content
This repository was archived by the owner on Sep 16, 2024. It is now read-only.

Commit 9934d7b

Browse files
committed
Configuring Travis to just compile code for now
1 parent 69ba7cf commit 9934d7b

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.travis.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,8 @@ language: java
22
jdk:
33
- oraclejdk8
44
sudo: true
5-
install:
6-
- ./.travis/install-dependencies.sh
75
script:
86
- ./.travis/run-tests.sh
97
branches:
108
only:
11-
- master
9+
- master

.travis/run-tests.sh

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
#!/bin/bash
22

3+
# Can't run "test" because it exceeds the time limit for a Travis job
4+
# Also get intermittent 503 errors when running via Travis
5+
36
if [ "${TRAVIS_SECURE_ENV_VARS}" = "true" ] ; then
4-
./gradlew clean test
7+
./gradlew clean compiletestjava
58
fi

0 commit comments

Comments
 (0)