From dca2b3c9b44dd69a2211ff21724484f2b4d6f61d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hannes=20K=C3=B6rber?= Date: Fri, 27 May 2022 23:37:54 +0200 Subject: [PATCH] Justfile: Add build targets --- Justfile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Justfile b/Justfile index 815fd64..e4c22c3 100644 --- a/Justfile +++ b/Justfile @@ -32,6 +32,12 @@ install: install-static: cargo install --target {{target}} --features=static-build --path . +build: + cargo build + +build-static: + cargo build --target {{target}} --features=static-build + test: test-unit test-integration test-e2e test-unit: