OpenFPGA/.travis/script.sh

18 lines
261 B
Bash
Raw Normal View History

2019-04-10 02:24:37 -05:00
#!/bin/bash
source .travis/common.sh
set -e
$SPACER
start_section "OpenFPGA.build" "${GREEN}Building..${NC}"
if [[ $TRAVIS_OS_NAME == 'osx' ]]; then
make
2019-04-10 02:24:37 -05:00
else
# For linux, we enable full package compilation
make
2019-04-10 02:24:37 -05:00
fi
end_section "OpenFPGA.build"
$SPACER