-
Notifications
You must be signed in to change notification settings - Fork 25
/
.travis.yml
25 lines (25 loc) · 940 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# This file is in YAML syntax (see http://www.yaml.org)
#
# The syntax is INDENTATION-SENSITIVE. Mess it up at your peril!
#
language: java
jdk:
- oraclejdk7
branches:
except:
- docs
before_install:
- mvn -version
# - if [ $TRAVIS_BRANCH == "development" ] ; then { sudo apt-get update -qq; sudo apt-get install -qq nsis nsis-common nsis-pluginapi; } ; fi
install:
- echo "-*- Precompile Core -*-"
- mvn -B install -Dmaven.test.skip=true -Dmaven.javadoc.skip=true
# - echo "-*- Precompile IDE -*-"
#- mvn -B install -f ide/pom.xml -Dmaven.test.skip=true -Dmaven.javadoc.skip=true -Dgit-commit-id.skip=true
script:
- echo travis_fold:start:compile_core
- mvn -B install -Dmaven.javadoc.skip=true
- echo travis_fold:end:compile_core
#- echo travis_fold:start:compile_ide
#- mvn -B install -f ide/pom.xml -Dgit-commit-id.skip=true -Pall-platforms -P!ui-tests
#- echo travis_fold:end:compile_ide