mirror of
https://github.com/johnkerl/miller.git
synced 2026-08-01 04:01:58 +00:00
Merge pull request #55 from SikhNerd/travis
Add basic Travis CI Support
This commit is contained in:
commit
b95aabb79b
1 changed files with 21 additions and 0 deletions
21
.travis.yml
Normal file
21
.travis.yml
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
language: c
|
||||
|
||||
#Use newer travis container-based infrastructure
|
||||
sudo: false
|
||||
|
||||
#Install flex dependency
|
||||
addons:
|
||||
apt:
|
||||
packages:
|
||||
- flex
|
||||
|
||||
#Build using gcc and clang since it is supported
|
||||
compiler:
|
||||
- clang
|
||||
- gcc
|
||||
|
||||
#Probably a better way to do this TODO
|
||||
before_script: cd c
|
||||
|
||||
#No configure or make install needed
|
||||
script: make
|
||||
Loading…
Add table
Add a link
Reference in a new issue