mirror of
https://github.com/nodejs/node.git
synced 2024-11-30 07:27:22 +01:00
a2328da1c4
The version of `clang` provided in the Travis linux image uses libstdc++4.8 whice is below our minimal supported version. Switching to `make test -j1` is to avoid races during the test cycle causes by the main target being "unstable", that is it always builds some files, and relinks the binary, which is used by the test procedure. PR-URL: https://github.com/nodejs/node/pull/23778 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Richard Lau <riclau@uk.ibm.com>
28 lines
854 B
YAML
28 lines
854 B
YAML
language: cpp
|
|
sudo: false
|
|
cache: ccache
|
|
os: linux
|
|
matrix:
|
|
include:
|
|
- name: "Linter"
|
|
node_js: "latest"
|
|
env:
|
|
- NODE=$(which node)
|
|
script:
|
|
- make lint
|
|
# Lint the first commit in the PR.
|
|
- \[ -z "$TRAVIS_COMMIT_RANGE" \] || (echo -e '\nLinting the commit message according to the guidelines at https://goo.gl/p2fr5Q\n' && git log $TRAVIS_COMMIT_RANGE --pretty=format:'%h' --no-merges | tail -1 | xargs npx -q core-validate-commit --no-validate-metadata)
|
|
- name: "Test Suite"
|
|
addons:
|
|
apt:
|
|
sources:
|
|
- ubuntu-toolchain-r-test
|
|
packages:
|
|
- g++-4.9
|
|
install:
|
|
- export CC='ccache gcc-4.9' CXX='ccache g++-4.9' JOBS=2
|
|
- ./configure
|
|
- make -j2 V=
|
|
script:
|
|
- PARALLEL_ARGS='--flaky-tests=skip' make -j1 test
|