Skip to content

Commit ffad4f1

Browse files
committed
ci(workflow): add retry loop to pushsync beekeeper checks
1 parent d6f65c6 commit ffad4f1

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/beekeeper.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -153,10 +153,10 @@ jobs:
153153
run: timeout ${TIMEOUT} beekeeper check --cluster-name local-dns --checks=ci-gsoc
154154
- name: Test pushsync (chunks)
155155
id: pushsync-chunks-1
156-
run: timeout ${TIMEOUT} beekeeper check --cluster-name local-dns --checks=ci-pushsync-chunks
156+
run: timeout ${TIMEOUT} bash -c 'until beekeeper check --cluster-name local-dns --checks=ci-pushsync-chunks; do echo "waiting for pushsync-chunks..."; sleep .3; done'
157157
- name: Test pushsync (light mode chunks)
158158
id: pushsync-chunks-2
159-
run: timeout ${TIMEOUT} beekeeper check --cluster-name local-dns --checks=ci-pushsync-light-chunks
159+
run: timeout ${TIMEOUT} bash -c 'until beekeeper check --cluster-name local-dns --checks=ci-pushsync-light-chunks; do echo "waiting for pushsync-light-chunks..."; sleep .3; done'
160160
- name: Test retrieval
161161
id: retrieval
162162
run: timeout ${TIMEOUT} beekeeper check --cluster-name local-dns --checks=ci-retrieval

0 commit comments

Comments
 (0)