Skip to content

Commit

Permalink
[CI] Trying to fix segfault during compilation of the aarch64 CI
Browse files Browse the repository at this point in the history
  • Loading branch information
LAGNEAU Romain committed Jan 24, 2025
1 parent 40cf96b commit 392267a
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 4 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/other-arch-isolated.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,12 @@ jobs:
-DUSE_JPEG=OFF -DUSE_PNG=OFF -DUSE_X11=OFF -DUSE_XML2=OFF -DBUILD_JAVA=OFF -DUSE_BLAS/LAPACK=OFF
cat ViSP-third-party.txt
make -j$(nproc)
if [[ $(nproc) -gt 2 ]]
then
NB_PROC_TO_USE=`expr $(nproc) - 2`
else
NB_PROC_TO_USE=1
fi
make -j${NB_PROC_TO_USE}
ctest -j$(nproc) --output-on-failure
ctest -j${NB_PROC_TO_USE} --output-on-failure
10 changes: 8 additions & 2 deletions .github/workflows/other-arch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,12 @@ jobs:
cmake .. -DBUILD_DEMOS=OFF -DBUILD_EXAMPLES=OFF -DBUILD_TUTORIALS=OFF -DBUILD_JAVA=OFF -DBUILD_MODULE_visp_java=OFF -DBUILD_MODULE_visp_java_binding=OFF
cat ViSP-third-party.txt
make -j$(nproc)
if [[ $(nproc) -gt 2 ]]
then
NB_PROC_TO_USE=`expr $(nproc) - 2`
else
NB_PROC_TO_USE=1
fi
make -j${NB_PROC_TO_USE}
ctest -j$(nproc) --output-on-failure
ctest -j${NB_PROC_TO_USE} --output-on-failure

0 comments on commit 392267a

Please sign in to comment.