mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
bec505bed7
PR-URL: https://github.com/nodejs/node/pull/23739 Fixes: https://github.com/nodejs/node/issues/23737 Refs: https://github.com/nodejs/node/pull/22452 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Yuta Hiroto <hello@hiroppy.me> Reviewed-By: Vladimir de Turckheim <vlad2t@hotmail.com>
30 lines
732 B
YAML
30 lines
732 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.
|
|
- if [ "${TRAVIS_PULL_REQUEST}" != "false" ]; then
|
|
bash tools/lint-pr-commit-message.sh ${TRAVIS_PULL_REQUEST} || true;
|
|
fi
|
|
- 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
|