From 4f1e27fa769732383125cc0e4fa34ca2b971c90d Mon Sep 17 00:00:00 2001 From: He Yin Ling Date: Sun, 10 Mar 2019 14:15:43 +0800 Subject: [PATCH] test: fix some ut case not assigned: we didn't remove UT case file correctly for cmake build. even we use artifact from make jobs, cmake case file will be used to assign test. --- .gitlab-ci.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 8742f5fd74..744a95fffd 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -209,8 +209,7 @@ build_esp_idf_tests_make: # Check if the tests demand Make built binaries. If not, delete them - if [ "$UNIT_TEST_BUILD_SYSTEM" == "make" ]; then exit 0; fi - rm -rf builds output sdkconfig - - rm -rf components/idf_test/unit_test/TestCaseAll.yml - - rm -rf components/idf_test/unit_test/CIConfigs/*.yml + - rm $CI_PROJECT_DIR/components/idf_test/unit_test/TestCaseAll.yml build_esp_idf_tests_cmake: <<: *build_esp_idf_unit_test_template @@ -225,8 +224,7 @@ build_esp_idf_tests_cmake: # Check if the tests demand CMake built binaries. If not, delete them - if [ "$UNIT_TEST_BUILD_SYSTEM" == "cmake" ]; then exit 0; fi - rm -rf builds output sdkconfig - - rm -rf components/idf_test/unit_test/TestCaseAll.yml - - rm -rf components/idf_test/unit_test/CIConfigs/*.yml + - rm $CI_PROJECT_DIR/components/idf_test/unit_test/TestCaseAll.yml .build_examples_make_template: &build_examples_make_template <<: *build_template