Re: Travis CI failed

2018-09-13 Thread Huxing Zhang
On Thu, Sep 13, 2018 at 11:56 PM Ian Luo wrote: > > I guess the cache is corrupted for some reason, and travis tends to pin our > job to the same instance. Is this some sort of issue we can report to Travis? > > On Thu, Sep 13, 2018 at 2:46 PM Jerrick Zhu wrote: > > > It's ok after clearing

Re: Travis CI failed

2018-09-13 Thread Ian Luo
I guess the cache is corrupted for some reason, and travis tends to pin our job to the same instance. On Thu, Sep 13, 2018 at 2:46 PM Jerrick Zhu wrote: > It's ok after clearing all the cache on travis. > > On Thu, Sep 13, 2018 at 2:12 PM Jerrick Zhu wrote: > > > No idea about this. > > : ( >

Re: Travis CI failed

2018-09-13 Thread Jerrick Zhu
It's ok after clearing all the cache on travis. On Thu, Sep 13, 2018 at 2:12 PM Jerrick Zhu wrote: > No idea about this. > : ( > > On Thu, Sep 13, 2018 at 1:31 PM Jerrick Zhu wrote: > >> It failed after add cache. >> >> https://travis-ci.org/apache/incubator-dubbo/jobs/428004974 >> >> On Thu,

Re: Travis CI failed

2018-09-13 Thread Jerrick Zhu
No idea about this. : ( On Thu, Sep 13, 2018 at 1:31 PM Jerrick Zhu wrote: > It failed after add cache. > > https://travis-ci.org/apache/incubator-dubbo/jobs/428004974 > > On Thu, Sep 13, 2018 at 1:27 PM Jerrick Zhu wrote: > >> OK, I'll take it. >> >> On Thu, Sep 13, 2018 at 12:52 PM YunKun

Re: Travis CI failed

2018-09-12 Thread Jerrick Zhu
It failed after add cache. https://travis-ci.org/apache/incubator-dubbo/jobs/428004974 On Thu, Sep 13, 2018 at 1:27 PM Jerrick Zhu wrote: > OK, I'll take it. > > On Thu, Sep 13, 2018 at 12:52 PM YunKun Huang wrote: > >> I don't understand why cache mvn repo files will cause a compile issue.

Re: Travis CI failed

2018-09-12 Thread Jerrick Zhu
OK, I'll take it. On Thu, Sep 13, 2018 at 12:52 PM YunKun Huang wrote: > I don't understand why cache mvn repo files will cause a compile issue. > Refer to travis document ( > https://docs.travis-ci.com/user/caching/#things-not-to-cache), > ``` > The cache’s purpose is to make installing

Re: Travis CI failed

2018-09-12 Thread YunKun Huang
I don't understand why cache mvn repo files will cause a compile issue. Refer to travis document (https://docs.travis-ci.com/user/caching/#things-not-to-cache), ``` The cache’s purpose is to make installing language-specific dependencies easy and fast, so everything related to tools like

Re: Travis CI failed

2018-09-12 Thread Jerrick Zhu
On Wed, Sep 12, 2018 at 10:15 AM Ian Luo wrote: > I suggest to add back maven cache configuration to check if it's recovered. > It helps on speeding the build. > I prefer stable than speed. How about others' thought? > > On Wed, Sep 12, 2018 at 8:47 AM Jerrick Zhu wrote: > > > When I enabled

Re: Travis CI failed

2018-09-11 Thread Ian Luo
I suggest to add back maven cache configuration to check if it's recovered. It helps on speeding the build. On Wed, Sep 12, 2018 at 8:47 AM Jerrick Zhu wrote: > When I enabled -X, I didn't get any useful informations. Neither upgrading > maven-compile-plugin. > After that I wanted to remove it

Re: Travis CI failed

2018-09-11 Thread Jerrick Zhu
When I enabled -X, I didn't get any useful informations. Neither upgrading maven-compile-plugin. After that I wanted to remove it in .m2, so removing the cache configuration. Until now I do not find out the reason. On Wed, Sep 12, 2018 at 7:37 AM Huxing Zhang wrote: > Hi, > > On Tue, Sep 11,

Re: Travis CI failed

2018-09-11 Thread Huxing Zhang
Hi, On Tue, Sep 11, 2018 at 11:41 AM Jerrick Zhu wrote: > > I try to remove the cache in .travis.yml, > > ``` > cache: > directories: > - '$HOME/.m2/repository' > ``` I have also tried a few times. How did you find it out? Are you using maven -X for debugging? > > Now it works. Maybe the cache

Re: Travis CI failed

2018-09-10 Thread Jerrick Zhu
I try to remove the cache in .travis.yml, ``` cache: directories: - '$HOME/.m2/repository' ``` Now it works. Maybe the cache affects the build process. I'll file a PR on master. On Mon, Sep 10, 2018 at 4:57 PM Jerrick Zhu wrote: > I tried to restart the build for a few times, it failed with

Re: Travis CI failed

2018-09-10 Thread Jerrick Zhu
I tried to restart the build for a few times, it failed with the same error. On Mon, Sep 10, 2018 at 1:56 PM yuhang xiu wrote: > Hi, > I also checked the log just now and found no problems. I have restarted > this task, I will observe the results after a while. > > YunKun Huang 于2018年9月10日周一

Re: Travis CI failed

2018-09-09 Thread yuhang xiu
Hi, I also checked the log just now and found no problems. I have restarted this task, I will observe the results after a while. YunKun Huang 于2018年9月10日周一 下午1:53写道: > Check this log, it says compile fail on dubbo-common module: > https://travis-ci.org/apache/incubator-dubbo/jobs/426109384 > >

Re: Travis CI failed

2018-09-09 Thread Jerrick Zhu
On Mon, Sep 10, 2018 at 1:53 PM YunKun Huang wrote: > Check this log, it says compile fail on dubbo-common module: > https://travis-ci.org/apache/incubator-dubbo/jobs/426109384 > > But there is no code change since latest successful bulid. > Also I try to run build in my local, it pass with jdk

Re: Travis CI failed

2018-09-09 Thread YunKun Huang
Check this log, it says compile fail on dubbo-common module: https://travis-ci.org/apache/incubator-dubbo/jobs/426109384 But there is no code change since latest successful bulid. Also I try to run build in my local, it pass with jdk 8. On 2018/09/10 05:36:27, Jerrick Zhu wrote: > Hi,

Travis CI failed

2018-09-09 Thread Jerrick Zhu
Hi, community I found that all travis CI builds failed on Java8. Here is the master's build: https://travis-ci.org/apache/incubator-dubbo Anyone can help to check it?