Skip to content

Commit

Permalink
again
Browse files Browse the repository at this point in the history
  • Loading branch information
blugavere committed Apr 15, 2017
1 parent a00e9b6 commit cb971e4
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 11 deletions.
15 changes: 9 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,17 @@
language: node_js
sudo: required
node_js:
- v6
- v5
- v4
- v6
- v5
- v4
cache:
bundler: true
directories:
- node_modules # NPM packages
- node_modules
services:
- docker
- docker
script:
- npm run docker
- npm run docker
env:
global:
secure: P0JRBu17Orbm36cxFwllmELlBwC4SJk3TCRMWQcdDlUA7w3aByor0MZZL3pw+M1QEgBKfW3w8HFPm8qdHviacaekM/TplztCNLYibRTJfDCyjIqiSY/JHNy5/l5hgrbO0f6XPoDnv2VwpHcQb487TiCbQ9uTdftfF9Izxf4DKRMKUKRGoekyWQtQwvXEF/NuU35FzD8zqPtwTQrgAFSij+uQAmQ/h/9uezAYOEZC8Re7SgOrkklG4+ZCr6NnVso+7zRnYbj27vlTviLn7F04357AjdUqUi3pjt3BKp0VheLd5hhQihAPOK2vZQN+Rr0vPn5ktITblkqEaoioboWnzJYAc3ROdjgjqjMC5s/zcRmajRYwiwRblqmx4Ljh6Pvd2cj9MEuSTwnwlbEUQuKXQWvrW4kW93ifzp1ijIDdt3ydayHR1AtqBoiA0o9spc0VtoRPiGLV8vCVqE/QQuBB/Bm8wIlNVZVTohQyggMijlrsd/FCwNwGSNKq88d5amyV07kL5yMV1EMDl6s5ij0nzfvUtaqJi0Mlr+caNbe6jcZmkIo2RLjxBW96Zv5tQNSaH8HYLAonutkv+k5nOU/sWB14NfLofXGKF9jPnvsvzRt1s4o14CnQsFwu8+lMPYw8QOtzZQavFbchHUQG4BZpNL7P4NwHfIS6tOJmNjY24Lg=
2 changes: 0 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@ ONBUILD ENV APP_VERSION ${APP_VERSION}

COPY package.json .npmrc /tmp/
RUN cd /tmp && npm install --prod \
# no dependencies
# && cp -a /tmp/node_modules /app \
&& npm cache clear

COPY . /app
Expand Down
6 changes: 4 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,10 @@ services:
environment:
- NODE_ENV=docker
- CI=true
- TRAVIS_REPO_SLUG=${TRAVIS_REPO_SLUG}
- TRAVIS=${TRAVIS}
- TRAVIS_REPO_SLUG=blugavere/cassandra-repository
- TRAVIS=true
- COVERALLS_SERVICE_NAME=travis-ci
- COVERALLS_REPO_TOKEN=${COVERALLS}
cassandra:
image: cassandra:latest
environment:
Expand Down
2 changes: 1 addition & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ gulp.task('coveralls', ['test'], () => {
if (!process.env.CI) {
return;
}
console.log(process.env);

return gulp.src(path.join(__dirname, 'coverage/lcov.info'))
.pipe(coveralls());
});
Expand Down

0 comments on commit cb971e4

Please sign in to comment.