-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrun.bat
141 lines (135 loc) · 3.68 KB
/
run.bat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
@ECHO OFF
SET COMPOSE_FILE_PATH=%CD%\target\classes\docker\docker-compose.yml
IF [%M2_HOME%]==[] (
SET MVN_EXEC=mvn
)
IF NOT [%M2_HOME%]==[] (
SET MVN_EXEC=%M2_HOME%\bin\mvn
)
IF [%1]==[] (
echo "Usage: %0 {build_start|build_start_it_supported|start|stop|purge|tail|reload_share|reload_acs|reload_api|build_test|test}"
GOTO END
)
IF %1==build_start (
CALL :down
CALL :build
CALL :start
CALL :tail
GOTO END
)
IF %1==build_start_it_supported (
CALL :down
CALL :build
CALL :prepare-test
CALL :start
CALL :tail
GOTO END
)
IF %1==start (
CALL :start
CALL :tail
GOTO END
)
IF %1==stop (
CALL :down
GOTO END
)
IF %1==purge (
CALL:down
CALL:purge
GOTO END
)
IF %1==tail (
CALL :tail
GOTO END
)
IF %1==reload_share (
CALL :build_share
CALL :start_share
CALL :tail
GOTO END
)
IF %1==reload_acs (
CALL :build_acs
CALL :start_acs
CALL :tail
GOTO END
)
IF %1==reload_api (
CALL :build_api
CALL :start_api
CALL :tail
GOTO END
)
IF %1==build_test (
CALL :down
CALL :build
CALL :prepare-test
CALL :start
CALL :test
CALL :tail_all
CALL :down
GOTO END
)
IF %1==test (
CALL :test
GOTO END
)
echo "Usage: %0 {build_start|start|stop|purge|tail|reload_share|reload_acs|build_test|test}"
:END
EXIT /B %ERRORLEVEL%
:start
docker volume create alfresco-share-chart-example-acs-volume
docker volume create alfresco-share-chart-example-db-volume
docker volume create alfresco-share-chart-example-ass-volume
docker-compose -f "%COMPOSE_FILE_PATH%" up --build -d
EXIT /B 0
:start_share
docker-compose -f "%COMPOSE_FILE_PATH%" up --build -d alfresco-share-chart-example-share
EXIT /B 0
:start_acs
docker-compose -f "%COMPOSE_FILE_PATH%" up --build -d alfresco-share-chart-example-acs
EXIT /B 0
:start_api
docker-compose -f "%COMPOSE_FILE_PATH%" up --build -d alfresco-chart-example-api
EXIT /B 0
:down
if exist "%COMPOSE_FILE_PATH%" (
docker-compose -f "%COMPOSE_FILE_PATH%" down
)
EXIT /B 0
:build
call %MVN_EXEC% clean package
EXIT /B 0
:build_share
docker-compose -f "%COMPOSE_FILE_PATH%" kill alfresco-share-chart-example-share
docker-compose -f "%COMPOSE_FILE_PATH%" rm -f alfresco-share-chart-example-share
call %MVN_EXEC% clean package -pl alfresco-share-chart-example-share,alfresco-share-chart-example-share-docker
EXIT /B 0
:build_acs
docker-compose -f "%COMPOSE_FILE_PATH%" kill alfresco-share-chart-example-acs
docker-compose -f "%COMPOSE_FILE_PATH%" rm -f alfresco-share-chart-example-acs
call %MVN_EXEC% clean package -pl alfresco-share-chart-example-integration-tests,alfresco-share-chart-example-platform,alfresco-share-chart-example-platform-docker
EXIT /B 0
:build_api
docker-compose -f "%COMPOSE_FILE_PATH%" kill alfresco-chart-example-api
docker-compose -f "%COMPOSE_FILE_PATH%" rm -f alfresco-chart-example-api
call %MVN_EXEC% clean package -pl alfresco-chart-example-api,alfresco-chart-example-api-docker
EXIT /B 0
:tail
docker-compose -f "%COMPOSE_FILE_PATH%" logs -f
EXIT /B 0
:tail_all
docker-compose -f "%COMPOSE_FILE_PATH%" logs --tail="all"
EXIT /B 0
:prepare-test
call %MVN_EXEC% verify -DskipTests=true -pl alfresco-share-chart-example-platform,alfresco-share-chart-example-integration-tests,alfresco-share-chart-example-platform-docker
EXIT /B 0
:test
call %MVN_EXEC% verify -pl alfresco-share-chart-example-platform,alfresco-share-chart-example-integration-tests
EXIT /B 0
:purge
docker volume rm -f alfresco-share-chart-example-acs-volume
docker volume rm -f alfresco-share-chart-example-db-volume
docker volume rm -f alfresco-share-chart-example-ass-volume
EXIT /B 0