mirror of
https://gitee.com/jmix/cuba.git
synced 2024-11-30 02:07:41 +08:00
24 lines
606 B
YAML
24 lines
606 B
YAML
language: java
|
|
jdk: openjdk8
|
|
|
|
before_install:
|
|
- git clone https://github.com/cuba-platform/cuba-gradle-plugin.git $TRAVIS_BUILD_DIR/../cuba-gradle-plugin
|
|
- (cd $TRAVIS_BUILD_DIR/../cuba-gradle-plugin && chmod +x ./gradlew && ./gradlew --no-daemon install)
|
|
- chmod +x ./gradlew
|
|
- ./gradlew --no-daemon startDb createTestDb
|
|
|
|
install:
|
|
- ./gradlew --no-daemon assemble
|
|
|
|
script:
|
|
- ./gradlew --no-daemon test javadoc -Dlogback.configurationFile=test-silent-logback.xml
|
|
|
|
cache:
|
|
directories:
|
|
- $HOME/.gradle/caches/
|
|
- $HOME/.gradle/wrapper/
|
|
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- openjdk-8-jdk |