You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
1.2 KiB
YAML
29 lines
1.2 KiB
YAML
services:
|
|
- redis-server
|
|
before_install:
|
|
- "sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 7F0CEB10"
|
|
- "echo 'deb http://downloads-distro.mongodb.org/repo/ubuntu-upstart dist 10gen' | sudo tee /etc/apt/sources.list.d/mongodb.list"
|
|
- "sudo apt-get update"
|
|
- "sudo apt-get install mongodb-org-server"
|
|
- npm i --production
|
|
- node app --setup="{\"url\":\"http://127.0.0.1:4567/\",\"secret\":\"abcdef\",\"database\":\"mongo\",\"mongo:host\":\"127.0.0.1\",\"mongo:port\":27017,\"mongo:username\":\"\",\"mongo:password\":\"\",\"mongo:database\":0,\"redis:host\":\"127.0.0.1\",\"redis:port\":6379,\"redis:password\":\"\",\"redis:database\":0,\"admin:username\":\"admin\",\"admin:email\":\"test@example.org\",\"admin:password\":\"abcdef\",\"admin:password:confirm\":\"abcdef\"}" --ci="{\"host\":\"127.0.0.1\",\"port\":27017,\"database\":0}"
|
|
before_script:
|
|
- "until nc -z localhost 27017; do echo Waiting for MongoDB; sleep 1; done"
|
|
language: node_js
|
|
env:
|
|
- CXX=g++-4.8
|
|
addons:
|
|
apt:
|
|
sources:
|
|
- ubuntu-toolchain-r-test
|
|
packages:
|
|
- g++-4.8
|
|
node_js:
|
|
- "4.2"
|
|
- "4.1"
|
|
- "4.0"
|
|
- "0.11"
|
|
- "0.10"
|
|
branches:
|
|
only:
|
|
- master |