I've just start a project and I want to have a continuous integration environment on Gitlab. I pushed a simple meteor project and it works fine on my local machine. I wrote this on my gitlab-ci.yml
image: fedora:24
before_script:
- dnf install tar npm python gyp gcc-c++ mongodb -y
- dnf group install "Development Tools" -y
- curl https://install.meteor.com/ | sh
- meteor npm install
stages:
- test
test:
stage: test
script:
- meteor test --once --driver-package dispatch:mocha-phantomjs --allow-superuser
It works well but when the pipeline reach the test line it stucks on Started proxy and never pass from that point.
I've also tried with several docker image for Meteor but none of that works.
UPDATE
I changed the docker base image for node:4.2.2 and now shows the next error.
Looks like MongoDB doesn't understand your locale settings