You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Removed the custom notifications block from .travis.yml
- Notifying everyone on every build is now unnecessary, as GitHub protected branches and mandatory pull requests ensure that only successful builds make it into the develop and master branches
- Install the Ant JUnit packages missing from the Travis CI environment.
- ClosesNASAWorldWind#113
# Directs the Travis CI build service for World Wind Java
2
2
# For more information see https://docs.travis-ci.com/user/customizing-the-build/
3
3
4
-
# Required to install the jq JSON filter used to parse GitHub API results
5
-
dist: trusty
6
-
sudo: required
7
-
8
4
# Set up to run the Java build script per the Travis CI documentation
9
5
language: java
10
6
11
7
# Configure the build to use Oracle JDK 8
12
8
jdk:
13
9
- oraclejdk8
14
10
11
+
# Install the Ant JUnit package, which is missing from the Travis CI environment. See the Travis documentation: https://docs.travis-ci.com/user/installing-dependencies/#Adding-APT-Packages
12
+
addons:
13
+
apt:
14
+
packages:
15
+
- ant-optional
16
+
17
+
# Use xvfb to run tests that require a GUI and give it some time to start
15
18
before_script:
16
-
# Use xvfb to run tests that require a GUI
17
19
- "export DISPLAY=:99.0"
18
20
- "sh -e /etc/init.d/xvfb start"
19
-
- sleep 3# give xvfb some time to start
21
+
- sleep 3
20
22
21
23
# Build the project
22
24
script:
@@ -37,11 +39,3 @@ deploy:
37
39
skip_cleanup: true
38
40
on:
39
41
tags: true
40
-
41
-
# Notify the World Wind services mailing list on every build
0 commit comments