From 8db92dbe26aa5654afc839b3da89b3381ff999a3 Mon Sep 17 00:00:00 2001 From: Yih-Dar <2521628+ydshieh@users.noreply.github.com> Date: Mon, 24 Oct 2022 16:00:02 +0200 Subject: [PATCH] Fix nightly CircleCI (#19837) * Fix nightly CircleCI * update Co-authored-by: ydshieh --- .circleci/config.yml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 0247d3cd5e1..e055cf4fd84 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -81,11 +81,13 @@ jobs: - run: pip install . - run: | mkdir test_preparation - echo "tests" > test_preparation/test_list.txt - echo "tests" > test_preparation/examples_test_list.txt - - run: python utils/tests_fetcher.py --filter_tests - - run: mv test_list.txt test_preparation/filtered_test_list.txt - - run: mv test_repo_utils.txt test_preparation/test_repo_utils.txt + echo -n "tests" > test_preparation/test_list.txt + echo -n "tests" > test_preparation/examples_test_list.txt + echo -n "tests/repo_utils" > test_preparation/test_repo_utils.txt + - run: | + echo -n "tests" > test_list.txt + python utils/tests_fetcher.py --filter_tests + mv test_list.txt test_preparation/filtered_test_list.txt - run: python .circleci/create_circleci_config.py --fetcher_folder test_preparation - run: cp test_preparation/generated_config.yml test_preparation/generated_config.txt - store_artifacts: