From d85b70fffa36d4811863e34760abfc127f05e194 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"