Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fixup move env vars to env
  • Loading branch information
richardlau authored Oct 21, 2018
commit 366ed400fe33ccda572235e5ce0858e2498c12db
12 changes: 7 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,15 @@ matrix:
# 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"
env:
- CC="ccache clang"
- CFLAGS="-Qunused-arguments -Wno-unknown-warning-option"
- CXX="ccache clang++"
- CXXFLAGS="-Qunused-arguments -stdlib=libc++"
- JOBS=2
- LD_LIBRARY_PATH="/usr/local/clang-5.0.0/lib":$LD_LIBRARY_PATH
install:
- ./configure
- make -j2 V=
script:
- make -j2 test
before_install:
- export LD_LIBRARY_PATH="/usr/local/clang-5.0.0/lib":$LD_LIBRARY_PATH
- export CXX="ccache clang++ -stdlib=libc++ -Qunused-arguments"
- export CC="ccache clang -Qunused-arguments -Wno-unknown-warning-option"
- export JOBS=2