Skip to content

Commit f15e9fa

Browse files
authored
Merge pull request #47114 from gsmet/disable-oidc-dev-services-windows
Disable OIDC Dev Services tests on Windows
2 parents b80a841 + f07f7c0 commit f15e9fa

File tree

1 file changed

+14
-3
lines changed
  • integration-tests/oidc-dev-services

1 file changed

+14
-3
lines changed

integration-tests/oidc-dev-services/pom.xml

+14-3
Original file line numberDiff line numberDiff line change
@@ -100,9 +100,6 @@
100100
<plugin>
101101
<artifactId>maven-surefire-plugin</artifactId>
102102
</plugin>
103-
<plugin>
104-
<artifactId>maven-failsafe-plugin</artifactId>
105-
</plugin>
106103
<plugin>
107104
<groupId>io.quarkus</groupId>
108105
<artifactId>quarkus-maven-plugin</artifactId>
@@ -118,4 +115,18 @@
118115
</plugins>
119116
</build>
120117

118+
<profiles>
119+
<!-- On GitHub Actions, nested containers are not available on Windows -->
120+
<profile>
121+
<activation>
122+
<os>
123+
<family>windows</family>
124+
</os>
125+
</activation>
126+
<properties>
127+
<skipTests>true</skipTests>
128+
</properties>
129+
</profile>
130+
</profiles>
131+
121132
</project>

0 commit comments

Comments
 (0)