From 169ed4d24edce15e7b855799c592b58eaa0e64e7 Mon Sep 17 00:00:00 2001 From: Frank Lee Date: Tue, 14 Mar 2023 10:11:32 +0800 Subject: [PATCH] [workflow] purged extension cache before GPT test (#3128) --- .github/workflows/run_chatgpt_examples.yml | 1 + .github/workflows/run_chatgpt_unit_tests.yml | 1 + 2 files changed, 2 insertions(+) diff --git a/.github/workflows/run_chatgpt_examples.yml b/.github/workflows/run_chatgpt_examples.yml index af59c8db2..51bb9d074 100644 --- a/.github/workflows/run_chatgpt_examples.yml +++ b/.github/workflows/run_chatgpt_examples.yml @@ -35,6 +35,7 @@ jobs: - name: Execute Examples run: | cd applications/ChatGPT + rm -rf ~/.cache/colossalai ./examples/test_ci.sh env: NCCL_SHM_DISABLE: 1 diff --git a/.github/workflows/run_chatgpt_unit_tests.yml b/.github/workflows/run_chatgpt_unit_tests.yml index 8dcf21fe2..4e539bfe0 100644 --- a/.github/workflows/run_chatgpt_unit_tests.yml +++ b/.github/workflows/run_chatgpt_unit_tests.yml @@ -36,6 +36,7 @@ jobs: - name: Execute Unit Testing run: | cd applications/ChatGPT + rm -rf ~/.cache/colossalai pytest tests/ env: NCCL_SHM_DISABLE: 1