From 6c2407800972e0d98a72c51c4323ba2d83f04374 Mon Sep 17 00:00:00 2001 From: "chen, suyue" Date: Tue, 27 Aug 2024 17:40:52 +0800 Subject: [PATCH] expand CI timeout (#567) Signed-off-by: chensuyue --- .github/workflows/pr-microservice-test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pr-microservice-test.yml b/.github/workflows/pr-microservice-test.yml index 8dd5e6e6c..f9dd45d8f 100644 --- a/.github/workflows/pr-microservice-test.yml +++ b/.github/workflows/pr-microservice-test.yml @@ -52,7 +52,7 @@ jobs: cd tests service=$(echo $service_path | tr '/' '_') echo "service=${service}" >> $GITHUB_ENV - if [ -f test_${service}.sh ]; then timeout 30m bash test_${service}.sh; else echo "Test script not found, skip test!"; fi + if [ -f test_${service}.sh ]; then timeout 60m bash test_${service}.sh; else echo "Test script not found, skip test!"; fi - name: Clean up container if: cancelled() || failure()