From 9a03fa22e4096892637b5872db399af228998f47 Mon Sep 17 00:00:00 2001 From: Matheus Marchini Date: Thu, 14 Jun 2018 15:04:18 -0700 Subject: [PATCH] jenkins: add node-test-commit-v8-linux script Ref: https://github.com/nodejs/build/issues/1342 Ref: https://github.com/nodejs/node/pull/20783 --- jenkins/scripts/node-test-v8-updates.sh | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100755 jenkins/scripts/node-test-v8-updates.sh diff --git a/jenkins/scripts/node-test-v8-updates.sh b/jenkins/scripts/node-test-v8-updates.sh new file mode 100755 index 000000000..987b5e0ba --- /dev/null +++ b/jenkins/scripts/node-test-v8-updates.sh @@ -0,0 +1,17 @@ +#/bin/bash -ex + +### +# node-test-v8-updates +# Run specific Node.js tests for V8 updates (from test/v8-updates). These tests +# are inteded to be run in Ubuntu 16.04 machines. +### + +rm -rf build +git clone https://github.com/nodejs/build.git + +. ./build/jenkins/scripts/node-test-commit-pre.sh + +./configure; +make -j $(getconf NPROCESSORS_ONLN); + +$(PYTHON) tools/test.py -p tap --logfile test.tap --mode=release v8-updates