update travis

This commit is contained in:
tangxifan 2019-05-03 23:18:31 -06:00
parent 6e6ae1cc3d
commit c5ef99f6d4
1 changed files with 8 additions and 2 deletions

View File

@ -7,10 +7,16 @@ $SPACER
start_section "OpenFPGA.build" "${GREEN}Building..${NC}"
if [[ $TRAVIS_OS_NAME == 'osx' ]]; then
make
#make
mkdir build
cmake ..
make -j2
else
# For linux, we enable full package compilation
make
#make
mkdir build
cmake ..
make -j2
fi
end_section "OpenFPGA.build"