-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Stefan Marr <[email protected]>
- Loading branch information
Showing
2 changed files
with
25 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
stages: | ||
- build-and-test | ||
|
||
build_and_test_job: | ||
stage: build-and-test | ||
tags: [benchmarks, infinity] | ||
script: | ||
- ant test | ||
#- ant eclipseformat # don't have eclipse on CI yet | ||
- ant checkstyle |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
language: java | ||
sudo: false | ||
jdk: | ||
- oraclejdk8 | ||
install: | ||
- | | ||
export ECLIPSE_TAR=eclipse.tar.gz | ||
export ECLIPSE_URL=http://archive.eclipse.org/eclipse/downloads/drops4/R-4.6.3-201703010400/eclipse-SDK-4.6.3-linux-gtk-x86_64.tar.gz | ||
wget ${ECLIPSE_URL} -O ${ECLIPSE_TAR} | ||
tar -C ${TRAVIS_BUILD_DIR}/.. -xzf ${ECLIPSE_TAR} | ||
export ECLIPSE_EXE=${TRAVIS_BUILD_DIR}/../eclipse/eclipse | ||
script: | ||
- ant test | ||
- ant eclipseformat | ||
- ant checkstyle |