Skip to content

Commit

Permalink
Disable test in CI/CD on Mac, because of #28779
Browse files Browse the repository at this point in the history
  • Loading branch information
holly-cummins committed Oct 24, 2022
1 parent 3dbe9f8 commit ba8ce92
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions integration-tests/mongodb-devservices/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,30 @@
</plugins>
</build>
</profile>
<!-- Disabled pending fix of #28779 -->
<profile>
<id>mac-m1</id>
<activation>
<os>
<family>mac</family>
<arch>aarch64</arch>
</os>
<property>
<name>env.GITHUB_ACTIONS</name>
<value>true</value>
</property>
</activation>
<build>
<plugins>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>

</project>

0 comments on commit ba8ce92

Please sign in to comment.