diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6f896741c9..e1616012fc 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -35,6 +35,7 @@ jobs: build-macos: name: Build macOS binary strategy: + fail-fast: false matrix: # The file format is greptime-- include: @@ -129,6 +130,7 @@ jobs: build-linux: name: Build linux binary strategy: + fail-fast: false matrix: # The file format is greptime-- include: diff --git a/Makefile b/Makefile index 1e3dd4eb0a..c35715ffa7 100644 --- a/Makefile +++ b/Makefile @@ -34,7 +34,7 @@ docker-image: ## Build docker image. ##@ Test test: nextest ## Run unit and integration tests. - cargo nextest run + cargo nextest run --retries 3 .PHONY: nextest ## Install nextest tools. nextest: