Any tests using PhantomJS failing in some linux environments

closes #16818
This commit is contained in:
mposolda 2023-02-03 10:09:26 +01:00 committed by Marek Posolda
parent 5407228375
commit 0e374c7a45

View file

@ -627,6 +627,30 @@
<dballocator.skip>false</dballocator.skip>
</properties>
</profile>
<!-- Workaround for issues related to PhantomJS in some newer linux environment. See for example here for more details https://github.com/nodejs/node/issues/43132 -->
<profile>
<id>phantomjs-openssl-workaround</id>
<activation>
<os>
<family>unix</family>
</os>
</activation>
<build>
<pluginManagement>
<plugins>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<environmentVariables>
<OPENSSL_CONF>/dev/null</OPENSSL_CONF>
</environmentVariables>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
</profile>
</profiles>
<repositories>