Skip to content

Commit 724db75

Browse files
committed
remove warnings as errors: cannot do this because we support deprecated type
1 parent a3f8d50 commit 724db75

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

docker/docker-compose.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,9 @@ services:
2828

2929
test:
3030
<<: *common
31-
command: /bin/bash -xcl "swift test -Xswiftc -warnings-as-errors $${FORCE_TEST_DISCOVERY-} $${SANITIZER_ARG-} $${STRICT_CONCURRENCY_ARG-}"
31+
# FIXME: We cannot use -warnings-as-errors because we inherit from a deprecated type in the Tracer type,
32+
# and we need to keep supporting the old type still. This was introduced as we dropped Swift 5.6 and added 5.9/5.10.
33+
command: /bin/bash -xcl "swift test $${FORCE_TEST_DISCOVERY-} $${SANITIZER_ARG-} $${STRICT_CONCURRENCY_ARG-}"
3234

3335
# util
3436

0 commit comments

Comments
 (0)