Skip to content

Commit 3abb65a

Browse files
Merge pull request #5572 from grom72/test-without-interferences
test: avoid parallel tests execution
2 parents 554f570 + d65f452 commit 3abb65a

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

utils/docker/run-build.sh

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env bash
22
# SPDX-License-Identifier: BSD-3-Clause
3-
# Copyright 2016-2022, Intel Corporation
3+
# Copyright 2016-2023, Intel Corporation
44

55
#
66
# run-build.sh - is called inside a Docker container; prepares the environment
@@ -26,12 +26,12 @@ echo "## Running make test"
2626
make -j$(nproc) test
2727
echo ""
2828
echo "## Running make pcheck"
29-
# do not change -j2 to -j$(nproc) in case of tests (make check/pycheck)
30-
make -j2 pcheck TEST_BUILD=$TEST_BUILD
29+
# do not change -j1 to -j$(nproc) in case of tests (make check/pycheck)
30+
make -j1 pcheck TEST_BUILD=$TEST_BUILD
3131
echo ""
3232
echo "## Running make pycheck"
33-
# do not change -j2 to -j$(nproc) in case of tests (make check/pycheck)
34-
make -j2 pycheck
33+
# do not change -j1 to -j$(nproc) in case of tests (make check/pycheck)
34+
make -j1 pycheck
3535
echo ""
3636
echo "## Running make source"
3737
make -j$(nproc) DESTDIR=/tmp source

0 commit comments

Comments
 (0)