This is an automated email from the ASF dual-hosted git repository.
albumenj pushed a commit to branch 2.6.x
in repository https://gitbox.apache.org/repos/asf/dubbo.git
The following commit(s) were added to refs/heads/2.6.x by this push:
new b442d2b disable Travis CI for 2.6.x branch (#7344)
b442d2b is described below
commit b442d2bc8dbbc3a89785eadb71ac1528cbedf391
Author: Albumen Kevin <[email protected]>
AuthorDate: Tue Mar 9 13:17:04 2021 +0800
disable Travis CI for 2.6.x branch (#7344)
---
.travis.yml | 31 -------------------------------
1 file changed, 31 deletions(-)
diff --git a/.travis.yml b/.travis.yml
deleted file mode 100644
index f7e7606..0000000
--- a/.travis.yml
+++ /dev/null
@@ -1,31 +0,0 @@
-language: java
-sudo: false
-
-matrix:
- include:
- - env:
- - ZULUJDK=8
- - env:
- - ZULUJDK=7
-
-before_install:
- # adding $HOME/.sdkman to cache would create an empty directory, which
interferes with the initial installation
- - "[[ -d $HOME/.sdkman/bin/ ]] || rm -rf $HOME/.sdkman/"
- - curl -sL https://get.sdkman.io | bash
- - echo sdkman_auto_answer=true > $HOME/.sdkman/etc/config
- - source "$HOME/.sdkman/bin/sdkman-init.sh"
-
-install:
- - sdk install java $(sdk list java | grep -o "$ZULUJDK\.[0-9\.]*-zulu" |
head -1)
- - unset JAVA_HOME
-
-cache:
- directories:
- - "$HOME/.m2/repository"
- - "$HOME/.m2/wrapper"
-
-script:
- - travis_wait 30 ./mvnw --batch-mode --no-transfer-progress clean install
-DskipTests=false -Dcheckstyle.skip=false -Drat.skip=false
-Dmaven.javadoc.skip=true
-
-after_success:
- - bash <(curl -s https://codecov.io/bash)