Skip to content
This repository has been archived by the owner on Aug 31, 2018. It is now read-only.

Commit

Permalink
build: initial .travis.yml implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
addaleax committed Aug 24, 2017
1 parent 69b8f88 commit a5c8f42
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
language: cpp
compiler:
- clang
os:
- linux
sudo: false
cache: ccache
before_install:
- export CXX="ccache clang++ -Qunused-arguments"
- export CC="ccache clang -Qunused-arguments"
- export JOBS=2
install:
- ./configure
- make -j2 V=
script:
- make -j2 test-ci

0 comments on commit a5c8f42

Please sign in to comment.