From 903f02bf108248959ae7bf87e30e757f0678ca3b Mon Sep 17 00:00:00 2001 From: Ruihang Xia Date: Tue, 20 Jun 2023 11:39:53 +0800 Subject: [PATCH] ci: optimize release progress (#1794) Signed-off-by: Ruihang Xia --- .github/workflows/release.yml | 2 ++ Makefile | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) 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: