Skip to content

Commit

Permalink
Skip memory intensive tests on windows x86
Browse files Browse the repository at this point in the history
  • Loading branch information
Kale-Ko committed Jun 5, 2024
1 parent e6c092e commit a209239
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<overwriteExistingFiles>true</overwriteExistingFiles>
<test.excludes>none</test.excludes>
</properties>

<profiles>
Expand All @@ -78,6 +79,18 @@
<maven.compiler.release>8</maven.compiler.release>
</properties>
</profile>
<profile>
<id>windows-x86</id>
<activation>
<os>
<family>Windows</family>
<arch>x86</arch>
</os>
</activation>
<properties>
<test.excludes>com/aayushatharva/brotli4j/FileCompressAndDecompressTest.java</test.excludes>
</properties>
</profile>
</profiles>

<distributionManagement>
Expand Down Expand Up @@ -144,6 +157,9 @@
<version>3.1.0</version>
<configuration>
<argLine>-Xmx1680M -Xcheck:jni</argLine>
<excludes>
<exclude>${test.excludes}</exclude>
</excludes>
</configuration>
</plugin>

Expand Down

0 comments on commit a209239

Please sign in to comment.