Skip to content

Commit

Permalink
Disable for #28033
Browse files Browse the repository at this point in the history
Also specify Mac OS

Reverse disabling test

Re-disable test
  • Loading branch information
holly-cummins committed Sep 18, 2022
1 parent 877e39f commit b06790d
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions extensions/smallrye-graphql/deployment/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -122,4 +122,31 @@
</plugins>
</build>

<profiles>
<!-- Disabled pending fix of #28033 -->
<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 b06790d

Please sign in to comment.