From 31d0e196177ab0da7fa6a62fd1be733009a56c73 Mon Sep 17 00:00:00 2001 From: Vitaly Chikunov Date: Mon, 28 Oct 2024 02:56:09 +0300 Subject: [PATCH] Makefile: Change CI targets Signed-off-by: Vitaly Chikunov --- Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index e243854..16a8634 100644 --- a/Makefile +++ b/Makefile @@ -8,13 +8,13 @@ check: shellcheck -s bash bash_completion debuginfo-kernel-install # Run just the tests. -docker-build: +ci: docker build --progress=plain . -# Also, enter into last docker snapshot (to test something). -docker: docker-build +# Enter into last docker snapshot (to test something). +docker-enter: docker run --rm -it `docker images --format '{{.ID}}' | head -1` -test: check docker-build +test: check ci .PHONY: check