@@ -5,12 +5,6 @@ DOCKER_BUILD_CMD = docker build -f conformance-build/Dockerfile . --progress=pla
5
5
build-conformance :
6
6
sbt conformance/stage
7
7
8
- .PHONY : test-conformance-netty-server
9
- test-conformance-netty-server : build-conformance
10
- @echo " Running conformance tests for netty server"
11
- $(DOCKER_BUILD_CMD ) --build-arg launcher=NettyServerLauncher --build-arg config=suite-netty.yaml --build-arg parallel_args=" --parallel 1"
12
- @code=$$(cat out/exit_code | tr -d '\n' ) ; echo " Exiting with code: $$ code" ; exit $$ code
13
-
14
8
.PHONY : test-conformance-http4s-server
15
9
test-conformance-http4s-server : build-conformance
16
10
@echo " Running conformance tests for http4s server"
@@ -29,5 +23,13 @@ test-conformance-http4s-client: build-conformance
29
23
$(DOCKER_BUILD_CMD ) --build-arg launcher=Http4sClientLauncher --build-arg config=suite-http4s-client.yaml --build-arg mode=client
30
24
@code=$$(cat out/exit_code | tr -d '\n' ) ; echo " Exiting with code: $$ code" ; exit $$ code
31
25
26
+ .PHONY : test-conformance-netty-server
27
+ test-conformance-netty-server : build-conformance
28
+ @echo " Running conformance tests for netty server"
29
+ $(DOCKER_BUILD_CMD ) --build-arg launcher=NettyServerLauncher --build-arg config=suite-netty.yaml --build-arg parallel_args=" --parallel 1"
30
+ @code=$$(cat out/exit_code | tr -d '\n' ) ; echo " Exiting with code: $$ code" ; exit $$ code
31
+
32
32
.PHONY : test-conformance-stable
33
- test-conformance-stable : test-conformance-http4s-server test-conformance-http4s-client test-conformance-netty-server
33
+ test-conformance-stable : test-conformance-http4s-server \
34
+ test-conformance-http4s-client \
35
+ test-conformance-netty-server
0 commit comments