Skip to content

Commit

Permalink
Merge pull request #36140 from brunobat/oracle-test
Browse files Browse the repository at this point in the history
Ignore oracle test
  • Loading branch information
geoand authored Sep 25, 2023
2 parents 72e23e5 + bba5673 commit 6b1f33e
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 136 deletions.
81 changes: 0 additions & 81 deletions integration-tests/opentelemetry-jdbc-instrumentation/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -326,86 +326,5 @@
</plugins>
</build>
</profile>
<profile>
<id>test-jdbc-instrumentation-docker-oracle</id>
<activation>
<property>
<name>start-containers</name>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>io.fabric8</groupId>
<artifactId>docker-maven-plugin</artifactId>
<configuration>
<images>
<image>
<name>${oracle.image}</name>
<run>
<ports>
<port>1521:1521</port>
</ports>
<env>
<ORACLE_PASSWORD>quarkus</ORACLE_PASSWORD>
</env>
<log>
<prefix>Oracle Database: </prefix>
<date>default</date>
<color>red</color>
</log>
<wait>
<!-- good docs found at: https://dmp.fabric8.io/#build-healthcheck -->
<!-- Unfortunately booting this is slow, needs to set a generous timeout: -->
<time>60000</time>
<!-- leverage the healthcheck in the image we use -->
<healthy>yes</healthy>
<!-- In case of any issues with the built-in healthcheck we can revert back to the original log check:-->
<!--<log>DATABASE IS READY TO USE!</log>-->
</wait>
</run>
</image>
</images>
<!--Stops all Oracle DB images currently running, not just those we just started.
Useful to stop processes still running from a previously failed integration test run -->
<allContainers>true</allContainers>
</configuration>
<executions>
<execution>
<id>docker-start</id>
<phase>compile</phase>
<goals>
<goal>stop</goal>
<goal>start</goal>
</goals>
</execution>
<execution>
<id>docker-stop</id>
<phase>post-integration-test</phase>
<goals>
<goal>stop</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<executions>
<execution>
<id>docker-prune</id>
<phase>generate-resources</phase>
<goals>
<goal>exec</goal>
</goals>
<configuration>
<executable>${docker-prune.location}</executable>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>

This file was deleted.

This file was deleted.

This file was deleted.

0 comments on commit 6b1f33e

Please sign in to comment.