From ed5742404aa146057ced49c683cca36de7b571f1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9goire=20Henry?= Date: Mon, 28 Aug 2017 20:08:53 +0200 Subject: [PATCH] CI: allow tests involving a node to be retried once --- .gitlab-ci.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 67eb71744..b138a5cae 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -116,36 +116,43 @@ test:proto_alpha:transactions: <<: *test_definition script: - make -C test/proto_alpha run-test-transaction + retry: 1 test:proto_alpha:origination: <<: *test_definition script: - make -C test/proto_alpha run-test-origination + retry: 1 test:proto_alpha:endorsement: <<: *test_definition script: - make -C test/proto_alpha run-test-endorsement + retry: 1 test:proto_alpha:vote: <<: *test_definition script: - make -C test/proto_alpha run-test-vote + retry: 1 test:basic.sh: <<: *test_definition script: - make -C test run-basic.sh + retry: 1 test:contracts.sh: <<: *test_definition script: - make -C test run-contracts.sh + retry: 1 test:multinode.sh: <<: *test_definition script: - make -C test run-multinode.sh + retry: 1 ## Publishing (small) docker images with tezos binaries