mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-06 01:24:10 +00:00
It looks like that whole "Fixing Travis's git clone" code was just there to make the "git describe --tags" work. I simply removed both. Signed-off-by: Clifford Wolf <clifford@clifford.at>
52 lines
977 B
Bash
Executable file
52 lines
977 B
Bash
Executable file
#! /bin/bash
|
|
|
|
set -e
|
|
|
|
source .travis/common.sh
|
|
|
|
##########################################################################
|
|
|
|
echo
|
|
echo 'Configuring...' && echo -en 'travis_fold:start:script.configure\\r'
|
|
echo
|
|
|
|
if [ "$CONFIG" = "gcc" ]; then
|
|
echo "Configuring for gcc."
|
|
make config-gcc
|
|
elif [ "$CONFIG" = "clang" ]; then
|
|
echo "Configuring for clang."
|
|
make config-clang
|
|
fi
|
|
|
|
echo
|
|
echo -en 'travis_fold:end:script.configure\\r'
|
|
echo
|
|
|
|
##########################################################################
|
|
|
|
echo
|
|
echo 'Building...' && echo -en 'travis_fold:start:script.build\\r'
|
|
echo
|
|
|
|
make
|
|
|
|
echo
|
|
echo -en 'travis_fold:end:script.build\\r'
|
|
echo
|
|
|
|
##########################################################################
|
|
|
|
./yosys tests/simple/fiedler-cooley.v
|
|
|
|
echo
|
|
echo 'Testing...' && echo -en 'travis_fold:start:script.test\\r'
|
|
echo
|
|
|
|
make test
|
|
|
|
echo
|
|
echo -en 'travis_fold:end:script.test\\r'
|
|
echo
|
|
|
|
##########################################################################
|