Merge remote-tracking branch 'origin/dev' into local-fpga-support
This commit is contained in:
@@ -128,19 +128,25 @@ search
|
|||||||
# turn off verbose printing to make this easier to read
|
# turn off verbose printing to make this easier to read
|
||||||
set +x
|
set +x
|
||||||
|
|
||||||
# print all result strings
|
# print 0's
|
||||||
for str in "${all_names[@]}";
|
for str in "${all_names[@]}";
|
||||||
do
|
do
|
||||||
echo "$str"
|
if [ 0 = $(echo "$str" | awk '{print$3}') ]; then
|
||||||
|
echo "$str"
|
||||||
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
# check if there was a non-zero return code
|
echo ""
|
||||||
|
|
||||||
|
# check if there was a non-zero return code and print 1's
|
||||||
|
EXIT=0
|
||||||
for str in "${all_names[@]}";
|
for str in "${all_names[@]}";
|
||||||
do
|
do
|
||||||
if [ ! 0 = $(echo "$str" | awk '{print$3}') ]; then
|
if [ ! 0 = $(echo "$str" | awk '{print$3}') ]; then
|
||||||
exit 1
|
echo "$str"
|
||||||
|
EXIT=1
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
echo "Done checking all submodules"
|
echo "Done checking all submodules"
|
||||||
|
exit $EXIT
|
||||||
|
|||||||
@@ -49,6 +49,7 @@ commands:
|
|||||||
- add_ssh_keys:
|
- add_ssh_keys:
|
||||||
fingerprints:
|
fingerprints:
|
||||||
- "3e:c3:02:5b:ed:64:8c:b7:b0:04:43:bc:83:43:73:1e"
|
- "3e:c3:02:5b:ed:64:8c:b7:b0:04:43:bc:83:43:73:1e"
|
||||||
|
- "32:d6:89:d2:97:fa:db:de:a8:2d:2a:f2:70:dd:80:89"
|
||||||
- checkout
|
- checkout
|
||||||
|
|
||||||
setup-tools:
|
setup-tools:
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
copy () {
|
copy () {
|
||||||
rsync -avzp -e 'ssh' $1 $2
|
rsync -avzp -e 'ssh' --exclude '.git' $1 $2
|
||||||
}
|
}
|
||||||
|
|
||||||
run () {
|
run () {
|
||||||
|
|||||||
@@ -71,6 +71,7 @@ run "export RISCV=\"$TOOLS_DIR\"; \
|
|||||||
|
|
||||||
read -a keys <<< ${grouping[$1]}
|
read -a keys <<< ${grouping[$1]}
|
||||||
|
|
||||||
|
# need to set the PATH to use the new verilator (with the new verilator root)
|
||||||
for key in "${keys[@]}"
|
for key in "${keys[@]}"
|
||||||
do
|
do
|
||||||
run "export RISCV=\"$TOOLS_DIR\"; \
|
run "export RISCV=\"$TOOLS_DIR\"; \
|
||||||
|
|||||||
Reference in New Issue
Block a user