This repository was archived by the owner on Oct 31, 2021. It is now read-only.
File tree 4 files changed +9
-7
lines changed
4 files changed +9
-7
lines changed Original file line number Diff line number Diff line change 66
66
uses : mikepenz/action-junit-report@v2
67
67
if : always() # always run even if the previous step fails
68
68
with :
69
- report_paths : ' /rest-api.xml'
69
+ report_paths : ' $GITHUB_WORKSPACE /rest-api.xml'
70
70
check_name : ' Go Test Summary'
71
71
72
72
pg-test :
Original file line number Diff line number Diff line change 50
50
uses : mikepenz/action-junit-report@v2
51
51
if : always() # always run even if the previous step fails
52
52
with :
53
- report_paths : ' /rest-api.xml'
53
+ report_paths : ' $GITHUB_WORKSPACE /rest-api.xml'
54
54
check_name : ' Go Test Summary'
55
55
pg-test :
56
56
name : PostgreSQL Test
Original file line number Diff line number Diff line change 42
42
uses : mikepenz/action-junit-report@v2
43
43
if : always() # always run even if the previous step fails
44
44
with :
45
- report_paths : ' /rest-api.xml'
45
+ report_paths : ' $GITHUB_WORKSPACE /rest-api.xml'
46
46
check_name : ' Go Test Summary'
47
47
pg-test :
48
48
timeout-minutes : 10
Original file line number Diff line number Diff line change @@ -16,8 +16,6 @@ ENV_LOWER = $(shell echo $(ENVIRONMENT) | tr A-Z a-z)
16
16
17
17
GENERATED_YAML =$(PWD ) /generated/$(ENV_LOWER )
18
18
19
- # PATH+=\b:$(LOCAL_BIN):$(NODE_MODULES_BIN)
20
-
21
19
ifndef POSTGRES_DB
22
20
POSTGRES_DB =postgres
23
21
endif
@@ -30,15 +28,19 @@ ifndef POSTGRES_HOST
30
28
POSTGRES_HOST =localhost
31
29
endif
32
30
31
+ GREEN =\033[0;32m
32
+ YELLOW =\033[1;33m
33
+ RESET =\033[0m
34
+
33
35
# Just a shorthand to print some colored text, makes it easier to read and tell the developer what all the makefile is
34
36
# doing since its doing a ton.
35
37
ifndef BUILDKITE
36
38
define infoMsg
37
- @echo "\033[0;32m[ $@ ] $(1 ) \033[0m "
39
+ @echo "$( GREEN ) [ $@ ] $(1 )$( RESET ) "
38
40
endef
39
41
40
42
define warningMsg
41
- @echo "\033[1;33m[ $@ ] $(1 ) \033[0m "
43
+ @echo "$( YELLOW ) [ $@ ] $(1 )$( RESET ) "
42
44
endef
43
45
else
44
46
define infoMsg
You can’t perform that action at this time.
0 commit comments