-
Notifications
You must be signed in to change notification settings - Fork 56
214 lines (190 loc) · 8.59 KB
/
maven_run_test.yml
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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: Java CI with Maven
on:
pull_request:
branches: [ main ]
paths-ignore:
- '.github/ISSUE_TEMPLATE/**'
- '.github/CODE_OF_CONDUCT.md'
- '.github/CODING_CONVENTIONS.md'
- '.github/CONTRIBUTING.md'
- '.github/dependabot.yml'
- '.github/pull_request_template.md'
- '.github/SECURITY.md'
- 'docs/**'
- 'examples/**'
- 'README.md'
- '.gitattributes'
- '.gitignore'
- 'LICENSE'
- 'NOTICE'
jobs:
Build-BaSyx:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'adopt'
cache: maven
- name: Start environment
run: docker compose --project-directory ./ci up -d --wait
- name: Install BaSyx
run: mvn clean install -DskipTests
- name: Stop environment
if: always()
run: docker compose --project-directory ./ci down
Build-AAS-CD-Docker-Images:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'adopt'
cache: maven
- name: Build Docker Images
run: |
mvn package -DskipTests -Ddocker.namespace=test --pl "org.eclipse.digitaltwin.basyx:basyx.aasrepository.component"
mvn package -DskipTests -Ddocker.namespace=test --pl "org.eclipse.digitaltwin.basyx:basyx.aasenvironment.component"
mvn package -DskipTests -Ddocker.namespace=test --pl "org.eclipse.digitaltwin.basyx:basyx.conceptdescriptionrepository.component"
mvn package -DskipTests -Ddocker.namespace=test --pl "org.eclipse.digitaltwin.basyx:basyx.aasdiscoveryservice.component"
mvn package -DskipTests -Ddocker.namespace=test --pl "org.eclipse.digitaltwin.basyx:basyx.aasxfileserver.component"
- name: Test Docker Images
run: |
images=("test/aas-repository" "test/aas-environment" "test/conceptdescription-repository" "test/aas-discovery" "test/aasxfileserver")
for image in "${images[@]}"; do
echo "Testing image $image"
docker run -d --name test_$image test/$image
sleep 30 # Give the container some time to start
# Check if the container is healthy (assuming the Dockerfile defines a HEALTHCHECK)
if [ "$(docker inspect --format='{{.State.Health.Status}}' test_$image)" == "healthy" ]; then
echo "$image started successfully and is healthy."
else
echo "$image failed to start or is unhealthy."
docker logs test_$image
exit 1
fi
# Stop and remove the container after testing
docker stop test_$image
docker rm test_$image
done
- name: Clean up Docker Images
run: |
docker rmi -f $(docker images -aq)
Build-Submodel-Docker-Images:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'adopt'
cache: maven
- name: Build Docker Images
run: |
mvn package -DskipTests -Ddocker.namespace=test --pl "org.eclipse.digitaltwin.basyx:basyx.submodelservice.example"
mvn package -DskipTests -Ddocker.namespace=test --pl "org.eclipse.digitaltwin.basyx:basyx.submodelrepository.component"
- name: Test Docker Images
run: |
images=("test/submodel-repository" "test/submodel-service")
for image in "${images[@]}"; do
echo "Testing image $image"
docker run -d --name test_$image test/$image
sleep 30 # Give the container some time to start
# Check if the container is healthy (assuming the Dockerfile defines a HEALTHCHECK)
if [ "$(docker inspect --format='{{.State.Health.Status}}' test_$image)" == "healthy" ]; then
echo "$image started successfully and is healthy."
else
echo "$image failed to start or is unhealthy."
docker logs test_$image
exit 1
fi
# Stop and remove the container after testing
docker stop test_$image
docker rm test_$image
done
- name: Clean up Docker Images
run: |
docker rmi -f $(docker images -aq)
Build-AAS-Registry-Docker-Images:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'adopt'
cache: maven
- name: Build Docker Images
run: |
mvn package -DskipTests -Ddocker.namespace=test --pl "org.eclipse.digitaltwin.basyx:basyx.aasregistry-service-release-kafka-mem"
mvn package -DskipTests -Ddocker.namespace=test --pl "org.eclipse.digitaltwin.basyx:basyx.aasregistry-service-release-kafka-mongodb"
mvn package -DskipTests -Ddocker.namespace=test --pl "org.eclipse.digitaltwin.basyx:basyx.aasregistry-service-release-log-mem"
mvn package -DskipTests -Ddocker.namespace=test --pl "org.eclipse.digitaltwin.basyx:basyx.aasregistry-service-release-log-mongodb"
- name: Test Docker Images
run: |
images=("test/aas-registry-kafka-mem" "test/aas-registry-kafka-mongodb" "test/aas-registry-log-mem" "test/aas-registry-log-mongodb")
for image in "${images[@]}"; do
echo "Testing image $image"
docker run -d --name test_$image test/$image
sleep 30 # Give the container some time to start
# Check if the container is healthy (assuming the Dockerfile defines a HEALTHCHECK)
if [ "$(docker inspect --format='{{.State.Health.Status}}' test_$image)" == "healthy" ]; then
echo "$image started successfully and is healthy."
else
echo "$image failed to start or is unhealthy."
docker logs test_$image
exit 1
fi
# Stop and remove the container after testing
docker stop test_$image
docker rm test_$image
done
- name: Clean up Docker Images
run: |
docker rmi -f $(docker images -aq)
Build-Submodel-Registry-Docker-Images:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'adopt'
cache: maven
- name: Build Docker Images
run: |
mvn package -DskipTests -Ddocker.namespace=test --pl "org.eclipse.digitaltwin.basyx:basyx.submodelregistry-service-release-kafka-mem"
mvn package -DskipTests -Ddocker.namespace=test --pl "org.eclipse.digitaltwin.basyx:basyx.submodelregistry-service-release-kafka-mongodb"
mvn package -DskipTests -Ddocker.namespace=test --pl "org.eclipse.digitaltwin.basyx:basyx.submodelregistry-service-release-log-mem"
mvn package -DskipTests -Ddocker.namespace=test --pl "org.eclipse.digitaltwin.basyx:basyx.submodelregistry-service-release-log-mongodb"
- name: Test Docker Images
run: |
images=("test/submodel-registry-kafka-mem" "test/submodel-registry-kafka-mongodb" "test/submodel-registry-log-mem" "test/submodel-registry-log-mongodb")
for image in "${images[@]}"; do
echo "Testing image $image"
docker run -d --name test_$image test/$image
sleep 30 # Give the container some time to start
# Check if the container is healthy (assuming the Dockerfile defines a HEALTHCHECK)
if [ "$(docker inspect --format='{{.State.Health.Status}}' test_$image)" == "healthy" ]; then
echo "$image started successfully and is healthy."
else
echo "$image failed to start or is unhealthy."
docker logs test_$image
exit 1
fi
# Stop and remove the container after testing
docker stop test_$image
docker rm test_$image
done
- name: Clean up Docker Images
run: |
docker rmi -f $(docker images -aq)