Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntoine du Hamel <duhamelantoine1995@gmail.com>2021-01-20 17:36:23 +0300
committerJames M Snell <jasnell@gmail.com>2021-01-25 00:56:46 +0300
commit90cae3aceefedefb1d431e501a4854a0447407ab (patch)
treec4ad3a4932f40a4312694e46b3b3c34a5cbadee3 /.github
parentbf79987433e8b2457007a8f531e4a0b3112ed466 (diff)
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 <rtrott@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/test-asan.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/test-asan.yml b/.github/workflows/test-asan.yml
index 7df02293fb8..9e6192c32a3 100644
--- a/.github/workflows/test-asan.yml
+++ b/.github/workflows/test-asan.yml
@@ -37,4 +37,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"