Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRich Trott <rtrott@gmail.com>2020-07-20 05:18:09 +0300
committerRich Trott <rtrott@gmail.com>2020-07-23 07:15:13 +0300
commit41c1e72b761ea70b0b4b8407702d831586cba321 (patch)
treed5f514696432778ea4e3b25ed28fa9cfa6dd7b47 /vcbuild.bat
parent2c3092088679b355804416eb8afcf6a667a0df40 (diff)
build: fix test-ci-js task in Makefile
Move benchmark CI to native suite since it requires building an addon. Refs: https://github.com/nodejs/node/issues/34427#issuecomment-660760789 PR-URL: https://github.com/nodejs/node/pull/34433 Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Anna Henningsen <anna@addaleax.net>
Diffstat (limited to 'vcbuild.bat')
-rw-r--r--vcbuild.bat4
1 files changed, 2 insertions, 2 deletions
diff --git a/vcbuild.bat b/vcbuild.bat
index ac4c604aa80..eb7bc0d74ec 100644
--- a/vcbuild.bat
+++ b/vcbuild.bat
@@ -18,8 +18,8 @@ cd %~dp0
set JS_SUITES=default
set NATIVE_SUITES=addons js-native-api node-api
@rem CI_* variables should be kept synchronized with the ones in Makefile
-set "CI_NATIVE_SUITES=%NATIVE_SUITES%"
-set "CI_JS_SUITES=%JS_SUITES% benchmark"
+set "CI_NATIVE_SUITES=%NATIVE_SUITES% benchmark"
+set "CI_JS_SUITES=%JS_SUITES%"
set CI_DOC=doctool
@rem Same as the test-ci target in Makefile
set "common_test_suites=%JS_SUITES% %NATIVE_SUITES%&set build_addons=1&set build_js_native_api_tests=1&set build_node_api_tests=1"