From 8ff6b5a393d291d26e6af962aaa279beb0bc44e8 Mon Sep 17 00:00:00 2001 From: tangxifan Date: Wed, 29 Dec 2021 10:51:51 -0800 Subject: [PATCH] [Script] clean up --- ci_test.sh | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100755 ci_test.sh diff --git a/ci_test.sh b/ci_test.sh deleted file mode 100755 index 6d48232f0..000000000 --- a/ci_test.sh +++ /dev/null @@ -1,26 +0,0 @@ -#!/bin/bash - -export OPENFPGA_PATH=~/rapidsilicon/openfpga_new - -for dir in RTL_Benchmark/*; do - if [ -d "$dir" ]; then - echo "Looking for top file in $dir/rtl" - - top_file="$(basename "$dir")" - - FILE=$dir/rtl/$top_file.v - - if [ -f "$FILE" ]; then - echo -e "${CYAN}$top_file exists ${ENDCOLOR}" - export design_path=${OPENFPGA_PATH}/$FILE - export design_top=$top_file - echo "design = $design_path" - python3 $OPENFPGA_PATH/openfpga_flow/scripts/run_ci_tests.py ci_tests - else - echo -e "${RED}Top file not found. Make sure design exists${ENDCOLOR}" - exit 1 - fi - fi -done - -