Run clint.py in some files

This commit is contained in:
Thiago de Arruda 2014-04-08 06:50:54 -03:00
parent f826b4c616
commit 0805911434
3 changed files with 8 additions and 0 deletions

View File

@ -3,6 +3,7 @@ compiler:
- clang
- gcc
before_install:
- ./scripts/clint.sh
- sudo ./scripts/travis-setup.sh
script:
- ./scripts/travis.sh

2
clint-files.txt Normal file
View File

@ -0,0 +1,2 @@
src/os/job.c
src/os/job.h

5
scripts/clint.sh Executable file
View File

@ -0,0 +1,5 @@
#!/bin/sh
for file in $(cat clint-files.txt); do
./clint.py $file
done