From f687837347b364c2122854afc30e730d450292e2 Mon Sep 17 00:00:00 2001 From: Markus Legner Date: Fri, 24 Nov 2023 13:39:17 +0100 Subject: [PATCH] build: allow building without scion-ci --- Makefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Makefile b/Makefile index fc555c7e08..3d2b5dd701 100644 --- a/Makefile +++ b/Makefile @@ -24,6 +24,11 @@ bazel: tar -kxf bazel-bin/scion.tar -C bin tar -kxf bazel-bin/scion-ci.tar -C bin +bazel-no-ci: + rm -f bin/* + bazel build //:scion + tar -kxf bazel-bin/scion.tar -C bin + test: bazel test --config=unit_all