Add profile to easily run testsuite against netty-tcnative-boringssl-static (#8436)
Motivation: We should provide an easy way to run our testsuite against netty-tcnative-boringssl-static Modifications: - Add boringssl profile which can be used to enable usage of netty-tcnative-boringssl-static - Make use of the profile in docker-compose Result: Cleaner and easier way of running testsuite against netty-tcnative-boringssl-static
This commit is contained in:
parent
d7fa7be67f
commit
b6522927d7
@ -27,7 +27,7 @@ services:
|
|||||||
|
|
||||||
test-boringssl-static:
|
test-boringssl-static:
|
||||||
<<: *common
|
<<: *common
|
||||||
command: /bin/bash -cl "./mvnw clean install -Dio.netty.testsuite.badHost=netty.io -Dxml.skip=true -Dtcnative.artifactId=netty-tcnative-boringssl-static -Dtcnative.classifier="
|
command: /bin/bash -cl "./mvnw -P boringssl clean install -Dio.netty.testsuite.badHost=netty.io -Dxml.skip=true"
|
||||||
|
|
||||||
shell:
|
shell:
|
||||||
<<: *common
|
<<: *common
|
||||||
|
7
pom.xml
7
pom.xml
@ -141,6 +141,13 @@
|
|||||||
</activation>
|
</activation>
|
||||||
</profile>
|
</profile>
|
||||||
|
|
||||||
|
<profile>
|
||||||
|
<id>boringssl</id>
|
||||||
|
<properties>
|
||||||
|
<tcnative.artifactId>netty-tcnative-boringssl-static</tcnative.artifactId>
|
||||||
|
<tcnative.classifier/>
|
||||||
|
</properties>
|
||||||
|
</profile>
|
||||||
<profile>
|
<profile>
|
||||||
<id>leak</id>
|
<id>leak</id>
|
||||||
<properties>
|
<properties>
|
||||||
|
Loading…
Reference in New Issue
Block a user