Skip to content

Commit

Permalink
Merge pull request #1374 from jsmrcka/fix/analytics-disabled-ci
Browse files Browse the repository at this point in the history
Fix analytics disabled by CI
  • Loading branch information
jsmrcka authored Aug 24, 2023
2 parents c272cd6 + 649cf56 commit 5433d52
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions build-time-analytics/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,30 @@
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<environmentVariables>
<!-- We run the tests with CI set to false as otherwise analytics are disabled -->
<!-- See https://github.com/quarkusio/quarkus/pull/35456 -->
<CI>false</CI>
</environmentVariables>
</configuration>
</plugin>
<plugin>
<artifactId>maven-failsafe-plugin</artifactId>
<configuration>
<environmentVariables>
<!-- We run the analytics integration test with CI set to false as otherwise analytics are disabled -->
<!-- See https://github.com/quarkusio/quarkus/pull/35456 -->
<CI>false</CI>
</environmentVariables>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<!-- Disable native build on this module -->
Expand Down

0 comments on commit 5433d52

Please sign in to comment.