Skip to content

Commit

Permalink
Merge pull request #1984 from quarkus-qe/fix/weekly
Browse files Browse the repository at this point in the history
Properly disable the build of podman on openshift
  • Loading branch information
michalvavrik authored Sep 6, 2024
2 parents b67a5ef + acbab6e commit 5697c93
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions build/podman/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,11 @@
</profile>
<profile>
<id>openshift</id>
<properties>
<quarkus.container-image.build>false</quarkus.container-image.build>
</properties>
<activation>
<property>
<name>openshift</name>
</property>
</activation>
<build>
<plugins>
<plugin>
Expand All @@ -74,6 +76,14 @@
<skip>true</skip>
</configuration>
</plugin>
<plugin>
<groupId>${quarkus.platform.group-id}</groupId>
<artifactId>quarkus-maven-plugin</artifactId>
<version>${quarkus.platform.version}</version>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>
</profile>
Expand Down

0 comments on commit 5697c93

Please sign in to comment.