Skip to content

Commit

Permalink
disable parallel build on windows
Browse files Browse the repository at this point in the history
option -j sometimes cause build errors currently
  • Loading branch information
fw2568 authored Feb 5, 2024
1 parent 7f6f023 commit 23df7e2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .ci/windows-build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ function configure_ovs()

OPTS="${EXTRA_OPTS} ${OPTS} $*"
configure_ovs $OPTS
make -j || { cat config.log; exit 1; }
make || { cat config.log; exit 1; }

if [ "$TESTSUITE" ]; then
if ! make check RECHECK=yes; then
Expand All @@ -27,4 +27,4 @@ if [ "$TESTSUITE" ]; then
fi
fi

exit 0
exit 0

0 comments on commit 23df7e2

Please sign in to comment.