Skip to content
Snippets Groups Projects
Commit f2b4ae14 authored by Patrick Louis S Connor's avatar Patrick Louis S Connor
Browse files

Merge branch 'bugfix/CI' into 'master'

enabling the control on the number of CPUs in CI

See merge request !47
parents 0779bf5b 5d497e7a
No related branches found
No related tags found
1 merge request!47enabling the control on the number of CPUs in CI
Pipeline #8536630 passed
......@@ -8,6 +8,7 @@ LCG:
script:
- yum install -y cmake python3 zsh which libtirpc libicu libglvnd-glx pcre2-utf16 libXrender libSM glibc-devel zlib-devel git-lfs
- source /cvmfs/sft.cern.ch/lcg/views/LCG_104/x86_64-el9-gcc13-opt/setup.sh
- export NPROC=8
- ./install.sh
- source tools/setup.sh
- ctest --test-dir build/Darwin --output-junit Testing/Temporary/test_report.xml -j$(nproc)
......
......@@ -30,9 +30,11 @@ fi
set -x
[ -n "$NPROC" ] || export NPROC=$(nproc)
# Download and build supporting tools
cmake -B build $(correction config --cmake) "$@"
cmake --build build --target install -j$(nproc)
cmake --build build --target install -j$NPROC
source tools/setup.sh
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment