From b17abe008160fc19b03fe9fe469654bbf8afdea9 Mon Sep 17 00:00:00 2001 From: Zheng Xi Zhou Date: Mon, 10 Jan 2022 13:01:46 +0800 Subject: [PATCH] Fix: add cue binary requirement in Development doc (#3062) * Fix: add cue binary requirement in Development doc If the version of cue binary is less than v0.3.0, like v0.2.0, `make reviewable` will fail due to issue: "make: *** [fmt] Error 1". As `make reviewable` is a required step for code contribution, add this prerequiste in the doc. Signed-off-by: Zheng Xi Zhou * Update contribute/developer-guide.md Co-authored-by: Jianbo Sun Co-authored-by: Jianbo Sun --- contribute/developer-guide.md | 1 + 1 file changed, 1 insertion(+) diff --git a/contribute/developer-guide.md b/contribute/developer-guide.md index dfd7bb769..069b2b387 100644 --- a/contribute/developer-guide.md +++ b/contribute/developer-guide.md @@ -9,6 +9,7 @@ This guide helps you get started developing KubeVela. 3. ginkgo 1.14.0+ (just for [E2E test](./developer-guide.md#e2e-test)) 4. golangci-lint 1.38.0+, it will install automatically if you run `make`, you can [install it manually](https://golangci-lint.run/usage/install/#local-installation) if the installation is too slow. 5. kubebuilder v3.1.0+ and you need to manually install the dependency tools for unit test. +6. [CUE binary](https://github.com/cue-lang/cue/releases) v0.3.0+
Install Kubebuilder manually