From 07fa97c83152357cc6d35f73d52f0ed3067b9637 Mon Sep 17 00:00:00 2001 From: George Kalpakas Date: Mon, 30 Nov 2020 23:07:14 +0200 Subject: [PATCH] ci: remove unnecessary retry for docs examples tests (#39905) In #32497, an option was introduced to retry failed docs examples tests a second time. This was done to work around some then recently introduced flakiness. After inspecting ~50 recent CI docs examples jobs, all tests passed on the first try. This commit gets rid of the retry attempt. This will avoid covering up any new flakiness introduces in the future. PR Close #39905 --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index ed6f77d700..06e78d76de 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -447,7 +447,7 @@ jobs: # Run examples tests. The "CIRCLE_NODE_INDEX" will be set if "parallelism" is enabled. # Since the parallelism is set to "5", there will be five parallel CircleCI containers. # with either "0", "1", etc as node index. This can be passed to the "--shard" argument. - - run: yarn --cwd aio example-e2e --setup --local <<# parameters.viewengine >>--viewengine<> --cliSpecsConcurrency=5 --shard=${CIRCLE_NODE_INDEX}/${CIRCLE_NODE_TOTAL} --retry 2 + - run: yarn --cwd aio example-e2e --setup --local <<# parameters.viewengine >>--viewengine<> --cliSpecsConcurrency=5 --shard=${CIRCLE_NODE_INDEX}/${CIRCLE_NODE_TOTAL} # This job should only be run on PR builds, where `CI_PULL_REQUEST` is not `false`. aio_preview: