From 140ebe595a7465062db1dacccc3e65b059799190 Mon Sep 17 00:00:00 2001 From: qqiao Date: Fri, 14 Jun 2024 04:41:56 +0000 Subject: [PATCH] Remove unused test script --- ci/test_container_ctr.sh | 37 ------------------------------------- 1 file changed, 37 deletions(-) delete mode 100755 ci/test_container_ctr.sh diff --git a/ci/test_container_ctr.sh b/ci/test_container_ctr.sh deleted file mode 100755 index 0c3839d7c..000000000 --- a/ci/test_container_ctr.sh +++ /dev/null @@ -1,37 +0,0 @@ -#!/bin/bash -set -e - -container=$1 -devices=$2 -suppress_failures="${3:-1}" - -# Use the dirname directly, without changing directories -if [[ $BASH_SOURCE = */* ]]; then - ci_script_dir=${BASH_SOURCE%/*}/ -else - ci_script_dir=./ -fi - -if [ $container != 'merlin-ci-runner' ]; then - ${ci_script_dir}container_size.sh $container $devices -fi - -${ci_script_dir}container_software.sh $container $devices - -echo "##############" -echo "# Unit tests #" -echo "##############" -exit_code=0 -## Test HugeCTR -if [ "$container" == "merlin-hugectr" ]; then - echo "Run unit tests for HugeCTR" - /hugectr/ci/test_unit.sh $container $devices || exit_code=1 -fi - -## Test SOK -if [ "$container" == "merlin-tensorflow" ]; then - echo "Run unit tests for merlin-sok" - /hugectr/ci/test_unit.sh $container $devices || exit_code=1 -fi - -exit $exit_code