From 4f2e2d139ac71b217258c7261f02cde0c8c7eb40 Mon Sep 17 00:00:00 2001 From: Sydney Anne Erickson <sydney@elixxir.io> Date: Mon, 30 Jan 2023 18:17:57 +0000 Subject: [PATCH] Update .gitlab-ci.yml --- .gitlab-ci.yml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 36f74cd2..c0b0849a 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -132,12 +132,7 @@ doc-update: image: $DOCKER_IMAGE script: # GOPRIVATE is cleared so that the public cache is pulled instead of directly pulling client. - - NEXT_WAIT_TIME=0 - until [ $NEXT_WAIT_TIME -eq 15 ] || GOOS=js GOARCH=wasm GOPRIVATE="" go install gitlab.com/elixxir/xxdk-wasm@$CI_COMMIT_SHA - do - sleep 60; (( NEXT_WAIT_TIME+=1 )) - done - [ $NEXT_WAIT_TIME -lt 15 ] + - NEXT_WAIT_TIME=0; until [ $NEXT_WAIT_TIME -eq 15 ] || GOOS=js GOARCH=wasm GOPRIVATE="" go install gitlab.com/elixxir/xxdk-wasm@$CI_COMMIT_SHA; do; sleep 60; (( NEXT_WAIT_TIME+=1 )); done; [ $NEXT_WAIT_TIME -lt 15 ] only: - release - master -- GitLab