Re: Gitlab-CI runner hangs after makefile test using diff fails

2015-01-26 Thread Gabriel Engel
*TL;DR:* this can be a configuration issue of your connection with redis server. Change it on app installation path + config/resque.yml I am running on the same issue. Started investigating right now. I wrote a basic test routing as you suggested and the issue still happens, the runner stays lo

Re: Gitlab-CI runner hangs after makefile test using diff fails

2014-07-22 Thread Dmitriy Zaporozhets
I made a simple example: → cat Makefile test: echo '1' > tmp.out echo '2' > tmp2.out diff tmp.out tmp2.out And run in in GitLab CI with `make test` It returns failed build. make test echo '1' > tmp.out echo '2' > tmp2.out diff tmp.out tmp2.out 1c1 < 1 --- > 2 make: *** [test] Error 1 If

Gitlab-CI runner hangs after makefile test using diff fails

2014-07-02 Thread Neal Lewis
I posted this in stackoverflow also: http://stackoverflow.com/questions/24410998/gitlab-ci-runner-hangs-after-makefile-test-fails I am using Gitlab-CI for my build tests. I have a very simple test which compares the output of the test install/build with the known output. I put the test in