Move script to docker folder

This commit is contained in:
Daniel García Aubert 2019-11-28 18:52:22 +01:00
parent 5f900a3b3c
commit f21f89f561
2 changed files with 23 additions and 1 deletions

View File

@ -0,0 +1,22 @@
#!/bin/bash
/etc/init.d/postgresql start
source /src/nodejs-install.sh
# Install cartodb-postgresql extension
git clone https://github.com/CartoDB/cartodb-postgresql.git
cd cartodb-postgresql && make && make install && cd ..
echo "Node.js version: "
node -v
echo "npm version: "
npm -v
echo "Clean install: "
npm ci
npm ls
# run tests
npm test

View File

@ -79,7 +79,7 @@
"test:teardown": "NODE_ENV=test node test teardown", "test:teardown": "NODE_ENV=test node test teardown",
"update-internal-deps": "rm -rf node_modules && npm install", "update-internal-deps": "rm -rf node_modules && npm install",
"pretest:ci": "cp config/environments/test.js.example config/environments/test.js", "pretest:ci": "cp config/environments/test.js.example config/environments/test.js",
"test:ci": "docker run -e \"NODEJS_VERSION=$NODE_VERSION\" -v `pwd`:/srv $DOCKER_IMAGE bash run_tests_docker.sh && docker ps --filter status=dead --filter status=exited -aq | xargs docker rm -v", "test:ci": "docker run -e \"NODEJS_VERSION=$NODE_VERSION\" -v `pwd`:/srv $DOCKER_IMAGE bash docker/scripts/test-setup.sh && docker ps --filter status=dead --filter status=exited -aq | xargs docker rm -v",
"docker:bash": "docker run -it -v `pwd`:/srv $DOCKER_IMAGE bash" "docker:bash": "docker run -it -v `pwd`:/srv $DOCKER_IMAGE bash"
}, },
"engines": { "engines": {