| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
|
Apparently the jinja patches will need work to remain compatible with Python 2. 11:51:43 Traceback (most recent call last): 11:51:43 File "../../deps/v8/third_party/inspector_protocol/code_generator.py", line 718, in <module> 11:51:43 main() 11:51:43 File "../../deps/v8/third_party/inspector_protocol/code_generator.py", line 601, in main 11:51:43 jinja_env = initialize_jinja_env(jinja_dir, config.protocol.output, config) 11:51:43 File "../../deps/v8/third_party/inspector_protocol/code_generator.py", line 190, in initialize_jinja_env 11:51:43 import jinja2 11:51:43 File "/home/iojs/build/workspace/node-test-commit-linux/deps/v8/third_party/jinja2/__init__.py", line 33, in <module> 11:51:43 from jinja2.environment import Environment, Template 11:51:43 File "/home/iojs/build/workspace/node-test-commit-linux/deps/v8/third_party/jinja2/environment.py", line 16, in <module> 11:51:43 from jinja2.defaults import BLOCK_START_STRING, \ 11:51:43 File "/home/iojs/build/workspace/node-test-commit-linux/deps/v8/third_party/jinja2/defaults.py", line 32, in <module> 11:51:43 from jinja2.tests import TESTS as DEFAULT_TESTS 11:51:43 File "/home/iojs/build/workspace/node-test-commit-linux/deps/v8/third_party/jinja2/tests.py", line 13, in <module> 11:51:43 from collections.abc import Mapping 11:51:43 ImportError: No module named abc 11:51:43 make[2]: *** [tools/v8_gypfiles/v8_base_without_compiler.target.mk:30: |
Sorry, something went wrong.
PR-URL: nodejs#40296 Fixes: nodejs#40294 Reviewed-By: Jiawen Geng <technicalcute@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Christian Clauss <cclauss@me.com> Reviewed-By: Michaël Zasso <targos@protonmail.com>
PR-URL: nodejs#40296 Fixes: nodejs#40294 Reviewed-By: Jiawen Geng <technicalcute@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Christian Clauss <cclauss@me.com> Reviewed-By: Michaël Zasso <targos@protonmail.com>
PR-URL: nodejs#40296 Fixes: nodejs#40294 Reviewed-By: Jiawen Geng <technicalcute@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Christian Clauss <cclauss@me.com> Reviewed-By: Michaël Zasso <targos@protonmail.com>
|
CI: https://ci.nodejs.org/job/node-test-pull-request/40615/ |
Sorry, something went wrong.
|
V8 builds are failing with 12:32:18 ERROR at //testing/gmock/BUILD.gn:11:1: Dependency not allowed.
12:32:18 source_set("gmock") {
12:32:18 ^--------------------
12:32:18 The item //testing/gmock:gmock
12:32:18 can not depend on //third_party/googletest:gtest_config
12:32:18 because it is not in //third_party/googletest:gtest_config's visibility list: [
12:32:18 //third_party/googletest:*
12:32:18 ]
12:32:18
12:32:18 make: *** [Makefile:272: v8] Error 1
I've tried runs on v14.x-staging and v14.x (e.g. without this PR) and the same failure is present 😞. |
Sorry, something went wrong.
|
Didn't we fix these errors already? |
Sorry, something went wrong.
|
Or could it be a problem with the GN version that's in CI? |
Sorry, something went wrong.
|
I think the last time V8 CI was executed for v14.x is in #39990: https://ci.nodejs.org/job/node-test-commit-v8-linux/4257/ |
Sorry, something went wrong.
Yes, most probably by the looks of things. It looks like s390x is the only platform failing this way. When compared to ppc64_le, s390x is on a newer version of gn: $ ansible -m shell -a "/home/iojs/build-tools/gn --version" test-ibm-rhel7-s390x-?
test-ibm-rhel7-s390x-3 | CHANGED | rc=0 >>
1938 (0153d36)
test-ibm-rhel7-s390x-2 | CHANGED | rc=0 >>
1938 (0153d36)
test-ibm-rhel7-s390x-4 | CHANGED | rc=0 >>
1938 (0153d36)
test-ibm-rhel7-s390x-1 | CHANGED | rc=0 >>
1938 (0153d36)
$ ansible -m shell -a "/home/iojs/build-tools/gn --version" test-osuosl-centos7-ppc64_le-?
test-osuosl-centos7-ppc64_le-4 | CHANGED | rc=0 >>
1930 (c0a2d23)
test-osuosl-centos7-ppc64_le-3 | CHANGED | rc=0 >>
1930 (c0a2d23)
test-osuosl-centos7-ppc64_le-1 | CHANGED | rc=0 >>
1930 (c0a2d23)
test-osuosl-centos7-ppc64_le-2 | CHANGED | rc=0 >>
1930 (c0a2d23)
$Looking at the gn commit history
https://gn.googlesource.com/gn/+/46b572ce4ceedfe57f4f84051bd7da624c98bf01 ("Fix configs visibility not always working") sounds like a plausible cause -- that is the newer gn is enforcing visibility rules that were previously not working. I'll try rolling back gn on the s390x machines. |
Sorry, something went wrong.
Sorry, something went wrong.
|
Looks like Windows CI is timing out on similar tests to the timeouts on master (refs #40684). |
Sorry, something went wrong.
Sorry, something went wrong.
Sorry, something went wrong.
| Back | FazBrowse Home | New Git URL |
Backport of #40296.
Required to fix the Windows CI with v14.x-staging. Conflicts were due to v14.x supporting fallback to Python 2 if Python 3 is not available.