*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
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
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