File tree Expand file tree Collapse file tree 3 files changed +16
-20
lines changed Expand file tree Collapse file tree 3 files changed +16
-20
lines changed Original file line number Diff line number Diff line change @@ -112,18 +112,14 @@ jobs:
112
112
wget -q ${{ env.TOXIPROXY_URL }} -O /home/runner/.local/bin/toxiproxy-server
113
113
chmod +x /home/runner/.local/bin/toxiproxy-server
114
114
/home/runner/.local/bin/toxiproxy-server --version
115
- - name : Clean up files
116
- run : ./mvnw clean -B
117
- - name : Build sdk
118
- run : ./mvnw compile -B -q
115
+ - name : Clean up and install sdk
116
+ run : ./mvnw clean install -B -q -DskipTests
119
117
- name : Unit tests
120
118
run : ./mvnw test # making it temporarily verbose.
121
119
env :
122
120
DOCKER_HOST : ${{steps.setup_docker.outputs.sock}}
123
121
- name : Codecov
124
122
125
- - name : Install jars
126
- run : ./mvnw install -q -B -DskipTests
127
123
- name : Integration tests using spring boot version ${{ matrix.spring-boot-version }}
128
124
id : integration_tests
129
125
run : PRODUCT_SPRING_BOOT_VERSION=${{ matrix.spring-boot-version }} ./mvnw -B -Pintegration-tests verify
Original file line number Diff line number Diff line change 414
414
<goal >verify</goal >
415
415
</goals >
416
416
<configuration >
417
- <!-- suppress UnresolvedMavenProperty -->
418
- <skip >${skipITs} </skip >
417
+ <!-- suppress UnresolvedMavenProperty -->
418
+ <skip >${skipITs} </skip >
419
419
</configuration >
420
420
</execution >
421
421
</executions >
658
658
<modules >
659
659
<module >sdk-tests</module >
660
660
</modules >
661
+ <build >
662
+ <plugins >
663
+ <plugin >
664
+ <groupId >org.apache.maven.plugins</groupId >
665
+ <artifactId >maven-surefire-plugin</artifactId >
666
+ <configuration >
667
+ <skipTests >true</skipTests >
668
+ </configuration >
669
+ </plugin >
670
+ </plugins >
671
+ </build >
672
+
661
673
</profile >
662
674
</profiles >
663
675
Original file line number Diff line number Diff line change 315
315
<groupId >org.apache.maven.plugins</groupId >
316
316
<artifactId >maven-failsafe-plugin</artifactId >
317
317
<version >3.2.2</version >
318
- <executions >
319
- <execution >
320
- <goals >
321
- <goal >integration-test</goal >
322
- <goal >verify</goal >
323
- </goals >
324
- <configuration >
325
- <!-- suppress UnresolvedMavenProperty -->
326
- <skip >${skipITs} </skip >
327
- </configuration >
328
- </execution >
329
- </executions >
330
318
</plugin >
331
319
</plugins >
332
320
</build >
You can’t perform that action at this time.
0 commit comments