From b58293253af3b651c45d6d32da0368f60be6267b Mon Sep 17 00:00:00 2001 From: Molly Lloyd Date: Fri, 7 Jul 2017 11:18:08 -0700 Subject: [PATCH] update image to linux based --- .circleci/config.yml | 2 +- .circleci/test.sh | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 922f8764494..5702257b17b 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -3,7 +3,7 @@ version: 2 jobs: build: docker: - - image: mbgl/ci:r1-linux-gl-js + - image: mbgl/ci:r4-linux-gl-js working_directory: ~/mapbox-gl-js steps: - checkout diff --git a/.circleci/test.sh b/.circleci/test.sh index 5e4d1164af2..dcb65cebf39 100755 --- a/.circleci/test.sh +++ b/.circleci/test.sh @@ -23,10 +23,10 @@ yarn run build-dev yarn run test-flow # run unit, render & query tests with coverage -xvfb-run --server-args="-screen 0 1024x768x24" npm run test-cov +xvfb-run --server-args="-screen 0 1024x768x24" npm run test-render test-cov # send coverage report to coveralls -nyc report --reporter=lcov +# nyc report --reporter=lcov # this code works around a Coveralls / CircleCI bug triggered by tagged builds if [ -z "$CIRCLE_TAG" ]; then (node ./node_modules/coveralls/bin/coveralls.js < ./coverage/lcov.info) || true