OpenFPGA/.travis/script.sh

33 lines
659 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
2019-05-04 00:18:31 -05:00
#make
mkdir build
2019-05-04 00:24:08 -05:00
cd build
cmake .. -DCMAKE_BUILD_TYPE=debug -DENABLE_VPR_GRAPHICS=off
make -j16
2019-08-23 13:45:17 -05:00
alias python3.5="python3"
2019-08-23 17:03:21 -05:00
ln -s /opt/local/bin/python3 /opt/local/bin/python3.5
else
2019-04-10 02:24:37 -05:00
# For linux, we enable full package compilation
2019-05-04 00:18:31 -05:00
#make
mkdir build
2019-05-04 00:24:08 -05:00
cd build
2019-06-03 12:16:39 -05:00
cmake --version
cmake .. -DCMAKE_BUILD_TYPE=debug
2019-06-07 23:32:47 -05:00
make -j16
2019-04-10 02:24:37 -05:00
fi
2019-05-15 17:55:18 -05:00
end_section "OpenFPGA.build"
2019-05-15 16:57:05 -05:00
2019-05-15 17:55:18 -05:00
$SPACER
2019-05-16 15:30:16 -05:00
2019-05-16 16:05:34 -05:00
cd -
2019-08-22 18:03:56 -05:00
# python3.5 ./openfpga_flow/scripts/run_fpga_task.py regression/regression_quick
chmod 755 run_test.sh
./run_test.sh