๐Ÿ› fix(actions): try and fix logging in GitHub Actions CI

This commit is contained in:
xtrm
2024-04-23 20:37:17 +02:00
parent 280e3b43d3
commit 291927a1cc

View File

@@ -6,7 +6,7 @@
# By: maldavid <kbz_8.dev@akel-engine.com> +#+ +:+ +#+ # # By: maldavid <kbz_8.dev@akel-engine.com> +#+ +:+ +#+ #
# +#+#+#+#+#+ +#+ # # +#+#+#+#+#+ +#+ #
# Created: 2022/10/04 16:43:41 by maldavid #+# #+# # # Created: 2022/10/04 16:43:41 by maldavid #+# #+# #
# Updated: 2024/04/23 20:32:32 by kiroussa ### ########.fr # # Updated: 2024/04/23 20:37:01 by kiroussa ### ########.fr #
# # # #
# **************************************************************************** # # **************************************************************************** #
@@ -72,15 +72,16 @@ CXXFLAGS += $(addprefix -D, $(_ENABLEDFLAGS))
RM = rm -rf RM = rm -rf
_RESET = $(shell tput sgr0) TPUT = tput -T xterm-256color
_BOLD = $(shell tput bold) _RESET = $(shell $(TPUT) sgr0)
_ITALIC = $(shell tput sitm) _BOLD = $(shell $(TPUT) bold)
_UNDER = $(shell tput smul) _ITALIC = $(shell $(TPUT) sitm)
_GREEN = $(shell tput setaf 2) _UNDER = $(shell $(TPUT) smul)
_YELLOW = $(shell tput setaf 3) _GREEN = $(shell $(TPUT) setaf 2)
_RED = $(shell tput setaf 1) _YELLOW = $(shell $(TPUT) setaf 3)
_GRAY = $(shell tput setaf 8) _RED = $(shell $(TPUT) setaf 1)
_PURPLE = $(shell tput setaf 5) _GRAY = $(shell $(TPUT) setaf 8)
_PURPLE = $(shell $(TPUT) setaf 5)
ifeq ($(DEBUG), true) ifeq ($(DEBUG), true)
MODE = $(_RESET)$(_PURPLE)$(_BOLD)Debug$(_RESET) MODE = $(_RESET)$(_PURPLE)$(_BOLD)Debug$(_RESET)