Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions .github/workflows/build_and_test_x86.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,6 @@ jobs:
ref: "${{ github.event.pull_request.head.sha }}"
- run: |
git fetch --prune --unshallow
- name: Log in to registry
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u $ --password-stdin
- name: Log in to the Container registry
uses: docker/login-action@v3
with:
Expand Down
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,10 @@ push-toolkit:

.PHONY: pull-toolkit
pull-toolkit:
$(DOCKER) pull $(TOOLKIT_REPO):$(VERSION)
for retry in 1 2 3 ; do \
$(DOCKER) pull $(TOOLKIT_REPO):$(VERSION) && exit 0; \
sleep 3; \
done

.PHONY: build-cli
build-cli:
Expand Down