Skip to content

Commit

Permalink
fix(build): run lint checks after cstor makefile is created (#30)
Browse files Browse the repository at this point in the history
Signed-off-by: kmova <[email protected]>
  • Loading branch information
kmova authored and vishnuitta committed Oct 4, 2019
1 parent e3a9058 commit 8b8a5c8
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,14 +57,20 @@ install:
- sh autogen.sh
- ./configure --enable-debug --with-zfs-headers=$PWD/../cstor/include --with-spl-headers=$PWD/../cstor/lib/libspl/include
- make -j4
- make -f ../cstor/Makefile cstyle CSTORDIR=$PWD/../cstor
- sudo make install
- sudo ldconfig
- cd ..
- cd cstor
- sh autogen.sh
- ./configure --with-config=user --enable-code-coverage=yes --enable-debug --enable-uzfs=yes --with-jemalloc --with-fio=$PWD/../fio --with-libcstor=$PWD/../libcstor/include
- make -j4;
# return to libcstor code to run lint checks
- cd ..
- cd libcstor
- make -f ../cstor/Makefile cstyle CSTORDIR=$PWD/../cstor
# back to cstor for running further tests.
- cd ..
- cd cstor
script:
export FIO_SRCDIR=$PWD/../fio;
sudo bash ./print_debug_info.sh &
Expand Down

0 comments on commit 8b8a5c8

Please sign in to comment.