Skip to content
This repository was archived by the owner on Feb 2, 2025. It is now read-only.

Commit b1d9615

Browse files
committed
Including testing with macosx
1 parent 705bcad commit b1d9615

File tree

3 files changed

+17
-8
lines changed

3 files changed

+17
-8
lines changed

.travis.yml

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
language: java
2-
dist: trusty
2+
3+
matrix:
4+
include:
5+
- os: linux
6+
- os: osx
7+
osx_image: xcode9.3
38

49
jdk:
510
- oraclejdk8
@@ -24,12 +29,8 @@ addons:
2429
before_install:
2530
- if [ ! -z "$GPG_SECRET_KEYS" ]; then echo $GPG_SECRET_KEYS | base64 --decode | $GPG_EXECUTABLE --import; fi
2631
- if [ ! -z "$GPG_OWNERTRUST" ]; then echo $GPG_OWNERTRUST | base64 --decode | $GPG_EXECUTABLE --import-ownertrust; fi
27-
- sudo apt-get -qq update
28-
- sudo apt-get install -y dbus-x11
29-
- "export DISPLAY=:99.0"
30-
- "sh -e /etc/init.d/xvfb start"
31-
- sleep 3 # give xvfb some time to start
32-
32+
- .travis/setup_xvfb.sh
33+
3334
install: mvn --settings .travis/settings.xml verify -Dgpg.skip -B -V -P$PROFILE
3435
script: skip
3536

.travis/setup_xvfb.sh

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
#!/bin/bash
2+
3+
sudo apt-get -qq update
4+
sudo apt-get install -y dbus-x11
5+
export DISPLAY=:99.0
6+
sh -e /etc/init.d/xvfb start
7+
# give xvfb some time to start
8+
sleep 3

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
6868
<downloadSources>true</downloadSources>
6969
<downloadJavadocs>true</downloadJavadocs>
70-
<aspectj.version>1.9.1</aspectj.version>
70+
<aspectj.version>1.9.4</aspectj.version>
7171
<java.version>1.8</java.version>
7272
<robotframework.maven.plugin.version>1.5.1</robotframework.maven.plugin.version>
7373
<robotframework.version>3.1.2</robotframework.version>

0 commit comments

Comments
 (0)