From e78b5d64b9145c430d55eacdb22cf0908d6796fa Mon Sep 17 00:00:00 2001 From: Antoine du Hamel Date: Wed, 20 Jan 2021 15:36:23 +0100 Subject: [PATCH] test: increase timeout on ASAN Action Setting the timeout to 300s (or 5 minutes) instead of the default 120s per test to limit the number of false negative on GH Action CI results. PR-URL: https://github.com/nodejs/node/pull/37007 Reviewed-By: Rich Trott Reviewed-By: James M Snell --- .github/workflows/test-asan.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test-asan.yml b/.github/workflows/test-asan.yml index 72b259a8354d8c..b66e41273f4a30 100644 --- a/.github/workflows/test-asan.yml +++ b/.github/workflows/test-asan.yml @@ -36,4 +36,4 @@ jobs: - name: Build run: make build-ci -j2 V=1 - name: Test - run: make run-ci -j2 V=1 TEST_CI_ARGS="-p actions" + run: make run-ci -j2 V=1 TEST_CI_ARGS="-p actions -t 300"