Skip to content

Commit 37f7db3

Browse files
authored
travis: Fix CI failure (#129)
* travis: jacocoant Signed-off-by: Ce Gao <ce.gao@outlook.com> * travis: Create ant lib directory Signed-off-by: Ce Gao <ce.gao@outlook.com> * travis: Remove output of tar Signed-off-by: Ce Gao <ce.gao@outlook.com> * travis: CP all jars to ant lib Signed-off-by: Ce Gao <ce.gao@outlook.com> * build.xml: Add junit task Signed-off-by: Ce Gao <ce.gao@outlook.com> * travis: Add juit support for ant Signed-off-by: Ce Gao <ce.gao@outlook.com>
1 parent e833236 commit 37f7db3

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.ci/init.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ source "$(dirname "${BASH_SOURCE}")/../scripts/utils/generator-util.sh"
44

55
# Download Processing.
66
curl -L http://download.processing.org/processing-3.3-linux64.tgz > $HOME/processing.tgz && \
7-
tar xvf $HOME/processing.tgz -C $HOME && \
7+
tar xvf $HOME/processing.tgz -C $HOME > /dev/null && \
88
mv $HOME/processing-3.3 $HOME/processing && \
99
rm -rf $HOME/processing.tgz
1010

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ before_install:
99
- .ci/init.sh
1010

1111
install:
12+
- sudo apt-get install ant-optional
1213
- ant info
1314
- ant try
1415
- ant package

0 commit comments

Comments
 (0)