Skip to content

Commit a56eb7c

Browse files
committed
Remove GitHub group-endgroup from Makefile
1 parent 1533087 commit a56eb7c

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

Makefile

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,9 @@ help:
3535

3636
build/%: DOCKER_BUILD_ARGS?=
3737
build/%: ## build the latest image for a stack using the system's architecture
38-
@echo "::group::Build $(OWNER)/$(notdir $@) (system's architecture)"
3938
docker build $(DOCKER_BUILD_ARGS) --rm --force-rm -t $(OWNER)/$(notdir $@):latest ./$(notdir $@) --build-arg OWNER=$(OWNER)
4039
@echo -n "Built image size: "
4140
@docker images $(OWNER)/$(notdir $@):latest --format "{{.Size}}"
42-
@echo "::endgroup::"
4341
build-all: $(foreach I, $(ALL_IMAGES), build/$(I)) ## build all stacks
4442

4543

@@ -101,9 +99,7 @@ pull-all: $(foreach I, $(ALL_IMAGES), pull/$(I)) ## pull all images
10199

102100

103101
push/%: ## push all tags for a jupyter image
104-
@echo "::group::Push $(OWNER)/$(notdir $@) (system's architecture)"
105102
docker push --all-tags $(OWNER)/$(notdir $@)
106-
@echo "::endgroup::"
107103
push-all: $(foreach I, $(ALL_IMAGES), push/$(I)) ## push all tagged images
108104

109105

@@ -117,7 +113,5 @@ run-sudo-shell/%: ## run a bash in interactive mode as root in a stack
117113

118114

119115
test/%: ## run tests against a stack
120-
@echo "::group::test/$(OWNER)/$(notdir $@)"
121116
python3 -m tests.run_tests --short-image-name "$(notdir $@)" --owner "$(OWNER)"
122-
@echo "::endgroup::"
123117
test-all: $(foreach I, $(ALL_IMAGES), test/$(I)) ## test all stacks

0 commit comments

Comments
 (0)