From 2b941c65f88cf8b6312543e53ff1abc841ffd178 Mon Sep 17 00:00:00 2001 From: Michael Dawson Date: Thu, 4 Jan 2018 18:42:59 -0500 Subject: [PATCH] src: update make for new code coverage locations The files for code coverage are moving to the build repository. Update the references to reflect this. PR-URL: https://github.com/nodejs/node/pull/17987 Reviewed-By: Tiancheng "Timothy" Gu Reviewed-By: Jon Moss Reviewed-By: Gireesh Punathil Reviewed-By: Khaidi Chu Reviewed-By: Luigi Pinca Reviewed-By: Colin Ihrig Reviewed-By: James M Snell --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 7baa7e90b09f0b..b9f632ff8db93a 100644 --- a/Makefile +++ b/Makefile @@ -163,10 +163,10 @@ coverage-build: all if [ ! -d gcovr ]; then git clone --depth=1 \ --single-branch git://github.com/gcovr/gcovr.git; fi if [ ! -d testing ]; then git clone --depth=1 \ - --single-branch https://github.com/nodejs/testing.git; fi + --single-branch https://github.com/nodejs/build.git; fi if [ ! -f gcovr/scripts/gcovr.orig ]; then \ (cd gcovr && patch -N -p1 < \ - "$(CURDIR)/testing/coverage/gcovr-patches.diff"); fi + "$(CURDIR)/build/jenkins/scripts/coverage/gcovr-patches.diff"); fi if [ -d lib_ ]; then $(RM) -r lib; mv lib_ lib; fi mv lib lib_ $(NODE) ./node_modules/.bin/nyc instrument --extension .js --extension .mjs lib_/ lib/