|
59 | 59 | run: mvn -N io.takari:maven:wrapper -Dmaven=3.8.2
|
60 | 60 |
|
61 | 61 | - name: Build Application
|
62 |
| - run: ./mvnw -T 1.5C clean install --no-transfer-progress -Pprod -DskipTests=true -Dmaven.javadoc.skip=true -Dmaven.wagon.httpconnectionManager.maxTotal=30 -Dmaven.wagon.http.retryHandler.count=5 |
| 62 | + run: ./mvnw clean package -pl app,distro/docker -am --no-transfer-progress -Pprod -DskipTests=true -Dmaven.javadoc.skip=true -Dmaven.wagon.httpconnectionManager.maxTotal=30 -Dmaven.wagon.http.retryHandler.count=5 |
63 | 63 |
|
64 | 64 | - name: Build and Push Application image
|
65 | 65 | run: |
|
@@ -143,21 +143,21 @@ jobs:
|
143 | 143 | run: minikube tunnel &> /dev/null &
|
144 | 144 |
|
145 | 145 | - name: Run Integration Tests - H2
|
146 |
| - run: ./mvnw -T 1.5C verify -am --no-transfer-progress -Pintegration-tests -Pci -Dregistry-in-memory-image=ttl.sh/${{ github.sha }}/apicurio/apicurio-registry:1d -Premote-mem -pl integration-tests -Dmaven.javadoc.skip=true |
| 146 | + run: ./mvnw verify -am --no-transfer-progress -Pintegration-tests -Pci -Dregistry-in-memory-image=ttl.sh/${{ github.sha }}/apicurio/apicurio-registry:1d -Premote-mem -pl integration-tests -Dmaven.javadoc.skip=true |
147 | 147 |
|
148 | 148 | - name: Run Integration Tests - auth - H2
|
149 |
| - run: ./mvnw -T 1.5C verify -am --no-transfer-progress -Pintegration-tests -Pauth -Dregistry-in-memory-image=ttl.sh/${{ github.sha }}/apicurio/apicurio-registry:1d -Premote-mem -pl integration-tests -Dmaven.javadoc.skip=true |
| 149 | + run: ./mvnw verify -am --no-transfer-progress -Pintegration-tests -Pauth -Dregistry-in-memory-image=ttl.sh/${{ github.sha }}/apicurio/apicurio-registry:1d -Premote-mem -pl integration-tests -Dmaven.javadoc.skip=true |
150 | 150 |
|
151 | 151 | - name: Run Integration Tests - migration - H2
|
152 |
| - run: ./mvnw -T 1.5C verify -am --no-transfer-progress -Pintegration-tests -Pmigration -Dregistry-in-memory-image=ttl.sh/${{ github.sha }}/apicurio/apicurio-registry:1d -Premote-mem -pl integration-tests -Dmaven.javadoc.skip=true |
| 152 | + run: ./mvnw verify -am --no-transfer-progress -Pintegration-tests -Pmigration -Dregistry-in-memory-image=ttl.sh/${{ github.sha }}/apicurio/apicurio-registry:1d -Premote-mem -pl integration-tests -Dmaven.javadoc.skip=true |
153 | 153 |
|
154 | 154 | - name: Collect logs
|
155 | 155 | if: failure()
|
156 | 156 | run: sh ./.github/scripts/collect_logs.sh
|
157 | 157 |
|
158 | 158 | - name: Upload tests logs artifacts
|
159 | 159 | if: failure()
|
160 |
| - uses: actions/upload-artifact@v1.0.0 |
| 160 | + uses: actions/upload-artifact@v4.0.0 |
161 | 161 | with:
|
162 | 162 | name: tests-logs-h2
|
163 | 163 | path: artifacts
|
@@ -188,21 +188,21 @@ jobs:
|
188 | 188 | run: minikube tunnel &> /dev/null &
|
189 | 189 |
|
190 | 190 | - name: Run Integration Tests - Postgresql
|
191 |
| - run: ./mvnw -T 1.5C verify -am --no-transfer-progress -Pintegration-tests -Pci -Dregistry-sql-image=ttl.sh/${{ github.sha }}/apicurio/apicurio-registry:1d -Premote-sql -pl integration-tests -Dmaven.javadoc.skip=true |
| 191 | + run: ./mvnw verify -am --no-transfer-progress -Pintegration-tests -Pci -Dregistry-sql-image=ttl.sh/${{ github.sha }}/apicurio/apicurio-registry:1d -Premote-sql -pl integration-tests -Dmaven.javadoc.skip=true |
192 | 192 |
|
193 | 193 | - name: Run Integration Tests - auth - Postgresql
|
194 |
| - run: ./mvnw -T 1.5C verify -am --no-transfer-progress -Pintegration-tests -Pauth -Dregistry-sql-image=ttl.sh/${{ github.sha }}/apicurio/apicurio-registry:1d -Premote-sql -pl integration-tests -Dmaven.javadoc.skip=true |
| 194 | + run: ./mvnw verify -am --no-transfer-progress -Pintegration-tests -Pauth -Dregistry-sql-image=ttl.sh/${{ github.sha }}/apicurio/apicurio-registry:1d -Premote-sql -pl integration-tests -Dmaven.javadoc.skip=true |
195 | 195 |
|
196 | 196 | - name: Run Integration Tests - migration - Postgresql
|
197 |
| - run: ./mvnw -T 1.5C verify -am --no-transfer-progress -Pintegration-tests -Pmigration -Dregistry-sql-image=ttl.sh/${{ github.sha }}/apicurio/apicurio-registry:1d -Premote-sql -pl integration-tests -Dmaven.javadoc.skip=true |
| 197 | + run: ./mvnw verify -am --no-transfer-progress -Pintegration-tests -Pmigration -Dregistry-sql-image=ttl.sh/${{ github.sha }}/apicurio/apicurio-registry:1d -Premote-sql -pl integration-tests -Dmaven.javadoc.skip=true |
198 | 198 |
|
199 | 199 | - name: Collect logs
|
200 | 200 | if: failure()
|
201 | 201 | run: sh ./.github/scripts/collect_logs.sh
|
202 | 202 |
|
203 | 203 | - name: Upload tests logs artifacts
|
204 | 204 | if: failure()
|
205 |
| - uses: actions/upload-artifact@v1.0.0 |
| 205 | + uses: actions/upload-artifact@v4.0.0 |
206 | 206 | with:
|
207 | 207 | name: tests-logs-postgresql
|
208 | 208 | path: artifacts
|
@@ -234,24 +234,24 @@ jobs:
|
234 | 234 | run: minikube tunnel &> /dev/null &
|
235 | 235 |
|
236 | 236 | - name: Run Integration Tests - Kafkasql
|
237 |
| - run: ./mvnw -T 1.5C verify -am --no-transfer-progress -Pintegration-tests -Pci -Dregistry-kafkasql-image=ttl.sh/${{ github.sha }}/apicurio/apicurio-registry:1d -Premote-kafka -pl integration-tests -Dmaven.javadoc.skip=true |
| 237 | + run: ./mvnw verify -am --no-transfer-progress -Pintegration-tests -Pci -Dregistry-kafkasql-image=ttl.sh/${{ github.sha }}/apicurio/apicurio-registry:1d -Premote-kafka -pl integration-tests -Dmaven.javadoc.skip=true |
238 | 238 |
|
239 | 239 | - name: Run Integration Tests - auth - Kafkasql
|
240 |
| - run: ./mvnw -T 1.5C verify -am --no-transfer-progress -Pintegration-tests -Pauth -Dregistry-kafkasql-image=ttl.sh/${{ github.sha }}/apicurio/apicurio-registry:1d -Premote-kafka -pl integration-tests -Dmaven.javadoc.skip=true |
| 240 | + run: ./mvnw verify -am --no-transfer-progress -Pintegration-tests -Pauth -Dregistry-kafkasql-image=ttl.sh/${{ github.sha }}/apicurio/apicurio-registry:1d -Premote-kafka -pl integration-tests -Dmaven.javadoc.skip=true |
241 | 241 |
|
242 | 242 | - name: Run Integration Tests - migration - Kafkasql
|
243 |
| - run: ./mvnw -T 1.5C verify -am --no-transfer-progress -Pintegration-tests -Pmigration -Dregistry-kafkasql-image=ttl.sh/${{ github.sha }}/apicurio/apicurio-registry:1d -Premote-kafka -pl integration-tests -Dmaven.javadoc.skip=true |
| 243 | + run: ./mvnw verify -am --no-transfer-progress -Pintegration-tests -Pmigration -Dregistry-kafkasql-image=ttl.sh/${{ github.sha }}/apicurio/apicurio-registry:1d -Premote-kafka -pl integration-tests -Dmaven.javadoc.skip=true |
244 | 244 |
|
245 | 245 | - name: Run Integration Tests - snapshotting - Kafkasql
|
246 |
| - run: ./mvnw -T 1.5C verify -am --no-transfer-progress -Pintegration-tests -Pkafkasql-snapshotting -Dregistry-kafkasql-image=ttl.sh/${{ github.sha }}/apicurio/apicurio-registry:1d -Premote-kafka -pl integration-tests -Dmaven.javadoc.skip=true |
| 246 | + run: ./mvnw verify -am --no-transfer-progress -Pintegration-tests -Pkafkasql-snapshotting -Dregistry-kafkasql-image=ttl.sh/${{ github.sha }}/apicurio/apicurio-registry:1d -Premote-kafka -pl integration-tests -Dmaven.javadoc.skip=true |
247 | 247 |
|
248 | 248 | - name: Collect logs
|
249 | 249 | if: failure()
|
250 | 250 | run: sh ./.github/scripts/collect_logs.sh
|
251 | 251 |
|
252 | 252 | - name: Upload tests logs artifacts
|
253 | 253 | if: failure()
|
254 |
| - uses: actions/upload-artifact@v1.0.0 |
| 254 | + uses: actions/upload-artifact@v4.0.0 |
255 | 255 | with:
|
256 | 256 | name: tests-logs-kafkasql
|
257 | 257 | path: artifacts
|
@@ -352,17 +352,17 @@ jobs:
|
352 | 352 | echo "Starting Registry App (In Memory)"
|
353 | 353 | docker run -it -p 8181:8080 -e apicurio.rest.deletion.artifact.enabled=true -d ttl.sh/${{ github.sha }}/apicurio/apicurio-registry:1d
|
354 | 354 | cd registry-v2
|
355 |
| - ./mvnw -T 1.5C -Pintegration-tests clean install -DskipTests=true -DskipUiBuild=true -Dmaven.javadoc.skip=true |
| 355 | + ./mvnw -Pintegration-tests clean install -DskipTests=true -DskipUiBuild=true -Dmaven.javadoc.skip=true |
356 | 356 | cd integration-tests
|
357 |
| - ../mvnw -T 1.5C verify -Pregression -Dmaven.javadoc.skip=true -Dquarkus.http.test-host=localhost -Dquarkus.http.test-port=8181 |
| 357 | + ../mvnw verify -Pregression -Dmaven.javadoc.skip=true -Dquarkus.http.test-host=localhost -Dquarkus.http.test-port=8181 |
358 | 358 |
|
359 | 359 | - name: Collect logs
|
360 | 360 | if: failure()
|
361 | 361 | run: sh ./.github/scripts/collect_logs.sh
|
362 | 362 |
|
363 | 363 | - name: Upload tests logs artifacts
|
364 | 364 | if: failure()
|
365 |
| - uses: actions/upload-artifact@v1.0.0 |
| 365 | + uses: actions/upload-artifact@v4.0.0 |
366 | 366 | with:
|
367 | 367 | name: tests-logs-legacy-v2
|
368 | 368 | path: artifacts
|
|
0 commit comments