-
Notifications
You must be signed in to change notification settings - Fork 30k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
build: restore $(CI_JS_SUITES) to test-ci-js #16132
Conversation
CI on |
/cc @bcoe 😉 |
@refack looks good to me, I think I screwed that up in a merge (since that was the whole darn point of pulling things into the |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
😩 sorry about that.
Now this also fixes #16129 |
CI: https://ci.nodejs.org/job/node-test-commit/13005/ Intending to land tomorrow morning if there are now objections, since we're missing test coverage of the addons. |
@@ -372,7 +372,7 @@ test-ci: | clear-stalled build-addons build-addons-napi | |||
out/Release/cctest --gtest_output=tap:cctest.tap | |||
$(PYTHON) tools/test.py $(PARALLEL_ARGS) -p tap --logfile test.tap \ | |||
--mode=release --flaky-tests=$(FLAKY_TESTS) \ | |||
$(TEST_CI_ARGS) $(CI_ASYNC_HOOKS) $(CI_JS_SUITES) known_issues | |||
$(TEST_CI_ARGS) $(CI_ASYNC_HOOKS) $(CI_JS_SUITES) $(CI_NATIVE_SUITES) known_issues |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
something I just noticed, could you switch:
CI_NATIVE_SUITES := addons addons-napi
to
CI_NATIVE_SUITES ?= addons addons-napi
while you're at it; that would allow this set of tests to be more easily turned off when running coverage locally. tldr; I think this file got slightly screwed up during rebase.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM and + 1 for expediting so we don't run too long with missing tests.
suites dropped during the last commit by a typo restore $(CI_JS_SUITES) to test-ci-js restore $(CI_NATIVE_SUITES) for `test-ci` and var assignment tweak
e3614bd
to
fc38604
Compare
suites dropped during the last commit by a typo restore $(CI_JS_SUITES) to test-ci-js restore $(CI_NATIVE_SUITES) for `test-ci` and var assignment tweak PR-URL: nodejs#16132 Fixes: nodejs#16129 Fixes: nodejs/build#910 Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com> Reviewed-By: Benjamin E. Coe <ben@npmjs.com> Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
suites dropped during the last commit by a typo restore $(CI_JS_SUITES) to test-ci-js restore $(CI_NATIVE_SUITES) for `test-ci` and var assignment tweak PR-URL: nodejs/node#16132 Fixes: nodejs/node#16129 Fixes: nodejs/build#910 Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com> Reviewed-By: Benjamin E. Coe <ben@npmjs.com> Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
suites dropped during the last commit by a typo restore $(CI_JS_SUITES) to test-ci-js restore $(CI_NATIVE_SUITES) for `test-ci` and var assignment tweak PR-URL: #16132 Fixes: #16129 Fixes: nodejs/build#910 Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com> Reviewed-By: Benjamin E. Coe <ben@npmjs.com> Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
suites dropped during the last commit by a typo restore $(CI_JS_SUITES) to test-ci-js restore $(CI_NATIVE_SUITES) for `test-ci` and var assignment tweak PR-URL: #16132 Fixes: #16129 Fixes: nodejs/build#910 Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com> Reviewed-By: Benjamin E. Coe <ben@npmjs.com> Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
@refack should we backport to 6.x? |
$(CI_JS_SUITES)
was dropped during the last commit by a mistakeFixes: #16129
Fixes: nodejs/build#910
Checklist
make -j4 test
(UNIX), orvcbuild test
(Windows) passesAffected core subsystem(s)
build