-
Notifications
You must be signed in to change notification settings - Fork 166
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
ubuntu1204-clang341 has been disabled in CI #685
Comments
ping... this is quite annoying... seems like it is failign on v7 too |
I can add something to the combination filter to skip, but do we know why it's failing on 4/6/7 but not master? Example of failing build: https://ci.nodejs.org/job/node-test-commit-linux/nodes=ubuntu1204-clang341-64/9384/console /usr/bin/../lib/gcc/x86_64-linux-gnu/4.9/../../../../include/c++/4.9/cstddef:51:11:
error: no member named 'max_align_t' in the global namespace
using ::max_align_t;
~~^ EDIT: Some comments by @bnoordhuis and @MylesBorins which suggest this isn't a new thing, nodejs/node#12392 (comment) nodejs/node#12412 (comment) nodejs/node#12104 (comment) |
I think this is because of the upgrade to gcc 4.9: #650 |
Lots of people running into this elsewhere: Suggested fixes are "use Given this, are there any objections to changing the existing master skip to include Node 4/6/7? # clang is only supported in Node versions 7 and lower
MAJOR_VERSION=`cat src/node_version.h |grep "#define NODE_MAJOR_VERSION" | awk '{ print $3}'`
RUN_TESTS="RUN"
echo $SMARTOS_VERSION
if [[ "$nodes" =~ clang && ${MAJOR_VERSION} -gt "7" ]]; then # change to -gt "4"
RUN_TESTS="DONT_RUN"
fi Alternatively we could just remove |
I have confirmed that the ubuntu1204-clang341 executor is skipped on master and failing on all release lines. I am disabling it from the main CI for now. I'm unsure who originally set it up, but I've changed this issue to track the progress of adding this executor back to CI /cc @nodejs/ctc @nodejs/build |
For posterity: it was added (by Rod?) in response to nodejs/node#8323. |
I'll close this out, the buildbot has been removed. |
Can we get this to skip so we don't have red builds?
The text was updated successfully, but these errors were encountered: