forked from xiexianbin/ueditor-plus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
43 lines (42 loc) · 1.38 KB
/
.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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# Steps to enable this build are:
#
# Generate the OAUTH-TOKEN at https://github.com/settings/applications
# Install travis: gem install travis
# Login to travis: travis login
# Encrypt the token: travis encrypt VAR_NAME=[OAUTH-TOKEN] -r XieXianbin/ueditor-plus --add env.global
#
language: java
sudo: required
branches:
only:
- master
jdk:
- oraclejdk8
cache:
directories:
- '$HOME/.gradle/caches'
git:
depth: 3
env:
global:
- secure: "JlFTItSTHxmevCoX1fXWkXtQOqP8ERT5ndeYMc378acqZIWEpmoSQelP8unRjtU6sU/4dxdUWpEFLrbcNQsFuPsgzMLGSwuEcjbuSBGMgdAHXSl6+FfBWrCcde2WIfk+eYMm7mrhcySWMvtWss1kDOu+s8+HtRvnRCAsfz+77hs="
before_script:
- export JAVA_OPTS="-Xmx2048m"
before_install:
- git gc --aggressive --prune=now
- ls ./etc
- sudo unzip -j -o ./etc/jce8.zip *.jar -d `jdk_switcher home oraclejdk8`/jre/lib/security
- sudo ls `jdk_switcher home oraclejdk8`/jre/lib/security
- sudo cp ./etc/java.security `jdk_switcher home oraclejdk8`/jre/lib/security
- chmod -R 777 ./travis/init-travis-build.sh
- ./travis/init-travis-build.sh
- chmod -R 777 ./gradlew
install:
- ./gradlew clean bootRepackage install --parallel -x test --stacktrace
script:
- travis_wait sudo ./gradlew checkstyleTest test --stacktrace --parallel
after_success:
- chmod -R 777 ./travis/push-javadoc-to-gh-pages.sh
- ./travis/push-javadoc-to-gh-pages.sh
- chmod -R 777 ./travis/deploy-to-sonatype.sh
- ./travis/deploy-to-sonatype.sh