-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.travis.yml
36 lines (36 loc) · 1009 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
env:
global:
- CC_TEST_REPORTER_ID=64d1468e17f8994daaac252fab3e9eacc7fc6c58366069a32473d21d2d684f24
language: node_js
node_js:
- "8"
- "10"
os:
- linux
- osx
osx_image: xcode9.4
cache:
directories:
- node_modules # NPM packages
before_script:
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
sudo apt-get install clang-format;
curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter;
elif [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
brew install clang-format;
curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-darwin-amd64 > ./cc-test-reporter;
else
echo Error:TRAVIS_OS_NAME && exit 1;
fi
- chmod +x ./cc-test-reporter
- ./cc-test-reporter before-build
script:
- clang-format --version
- npm run build
- npm test
after_script:
- ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT
notifications:
email:
on_success: never
on_failure: change