File tree 1 file changed +7
-1
lines changed
1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -552,7 +552,13 @@ proc runCI(cmd: string) =
552
552
# main bottleneck here
553
553
# xxx: even though this is the main bottleneck, we could speedup the rest via batching with `--batch`.
554
554
# BUG: with initOptParser, `--batch:'' all` interprets `all` as the argument of --batch, pending bug #14343
555
- execFold (" Run tester" , " nim c -r -d:nimCoroutines --putenv:NIM_TESTAMENT_REMOTE_NETWORKING:1 -d:nimStrictMode testament/testament $# all -d:nimCoroutines" % batchParam)
555
+ const Targets =
556
+ # Disable JS tests on i?86 systems since node.js has been deprecated there.
557
+ when defined (i386) and defined (linux):
558
+ " --targets:\" c cpp\" "
559
+ else :
560
+ " --targets:\" c cpp js\" "
561
+ execFold (" Run tester" , " nim c -r -d:nimCoroutines --putenv:NIM_TESTAMENT_REMOTE_NETWORKING:1 -d:nimStrictMode testament/testament $1 $2 all -d:nimCoroutines" % [batchParam, Targets ])
556
562
557
563
block CT_FFI:
558
564
when defined (posix): # windows can be handled in future PR's
You can’t perform that action at this time.
0 commit comments