-
Notifications
You must be signed in to change notification settings - Fork 167
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
node-test-commit-v8-linux #1370
Comments
|
Updated Full code #/bin/bash
echo $NODE_NAME
rm -rf build
git clone https://github.com/nodejs/build.git
. ./build/jenkins/scripts/select-compiler.sh
SKIP_MESSAGE="ok"
REVELANT_VERSION=1
if [ "$NODEJS_MAJOR_VERSION" -lt "6" ]
then
REVELANT_VERSION=
# 390 is only supported on v6 and later for now
SKIP_MESSAGE="ok # skipped s390 not supported for versions less than 6, skipping"
fi
RELEVANT_SUITE=1
if [ "$CI_JS_SUITES" = "v8-updates" ] && [ "$NODEJS_MAJOR_VERSION" -lt "11" ]
then
RELEVANT_SUITE=
fi
JOBS=$(getconf _NPROCESSORS_ONLN)
if [ $REVELANT_VERSION ] && [ $RELEVANT_SUITE ]
then
NODE_TEST_DIR=${HOME}/node-tmp
NODE_COMMON_PORT=15000
PYTHON=python
FLAKY_TESTS=$FLAKY_TESTS_MODE
make build-ci -j $JOBS
python tools/test.py -j $JOBS -p tap --logfile test.tap --mode=release --flaky-tests=dontcare $TEST_ARGS $CI_JS_SUITES
else
# fake out so we don't get failures
mkdir out
echo "1..1" >test.tap
echo "ok 1 # skip $SKIP_MESSAGE" >> test.tap
echo " ---" >> test.tap
echo " duration_ms: 4.925" >> test.tap
echo " ..." >> test.tap
fi |
This issue is stale because it has been open many days with no activity. It will be closed soon unless the stale label is removed or a comment is made. |
Closing this is stale |
Looks like node-test-commit-v8-linux is failing on 10.x for x86.
https://ci.nodejs.org/job/node-test-commit-v8-linux/1452/
I think it may be related to recent updates to tweak what tests run. @refack can you take a look as I think you made those updates. The job failing is: node-test-commit-custom-suites
The text was updated successfully, but these errors were encountered: