mirror of
https://github.com/nodejs/node.git
synced 2024-11-29 23:16:30 +01:00
db40b4ab32
Restore running tests on Travis once the ccache is populated. PR-URL: https://github.com/nodejs/node/pull/26720 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Refael Ackermann <refack@gmail.com>
35 lines
911 B
YAML
35 lines
911 B
YAML
language: cpp
|
|
cache: ccache
|
|
os: linux
|
|
dist: xenial
|
|
matrix:
|
|
include:
|
|
- name: "First commit message adheres to guidelines at <a href=\"https://goo.gl/p2fr5Q\">https://goo.gl/p2fr5Q</a>"
|
|
if: type = pull_request
|
|
language: node_js
|
|
node_js: "node"
|
|
script:
|
|
- if [ "${TRAVIS_PULL_REQUEST}" != "false" ]; then
|
|
bash -x tools/lint-pr-commit-message.sh ${TRAVIS_PULL_REQUEST};
|
|
fi
|
|
- name: "Linter"
|
|
language: node_js
|
|
node_js: "node"
|
|
env:
|
|
- NODE=$(which node)
|
|
script:
|
|
- make lint
|
|
- name: "Test Suite"
|
|
addons:
|
|
apt:
|
|
sources:
|
|
- ubuntu-toolchain-r-test
|
|
packages:
|
|
- g++-6
|
|
install:
|
|
- export CC='ccache gcc-6' CXX='ccache g++-6' JOBS=2
|
|
- ./configure
|
|
- make -j2 V=
|
|
script:
|
|
- PARALLEL_ARGS='--flaky-tests=skip' make -j1 test
|