From 6705d0334c1fcfe5b40f1bf298df93090e179a17 Mon Sep 17 00:00:00 2001 From: Greg Lin Date: Thu, 8 Sep 2022 17:29:17 -0500 Subject: [PATCH] Fix R builds tests not returning error codes correctly --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 13154ad..e13a46b 100644 --- a/Makefile +++ b/Makefile @@ -44,10 +44,10 @@ docker-build-$(platform): @cd builder && docker-compose build $(platform) build-r-$(platform): - @cd builder && R_VERSION=$(R_VERSION) docker-compose up $(platform) + @cd builder && R_VERSION=$(R_VERSION) docker-compose run --rm $(platform) test-r-$(platform): - @cd test && R_VERSION=$(R_VERSION) docker-compose up $(platform) + @cd test && R_VERSION=$(R_VERSION) docker-compose run --rm $(platform) bash-$(platform): docker run -it --rm --entrypoint /bin/bash -v $(CURDIR):/r-builds r-builds:$(platform)