Skip to content

Commit

Permalink
actually build tests and examples
Browse files Browse the repository at this point in the history
  • Loading branch information
boeschf committed Oct 3, 2024
1 parent bd92afb commit 2ff99e0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .gitlab/includes/common.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -67,10 +67,10 @@ variables:
- |
if [ -z "$SLURM_CPUS_PER_TASK" ]; then
echo "SLURM_CPUS_PER_TASK is not set, using 32 cores for building"
cmake --build $BUILD_DIR -- -j32
cmake --build $BUILD_DIR --target arbor examples tests pyarb -- -j32
else
echo "Building with $SLURM_CPUS_PER_TASK cores"
cmake --build $BUILD_DIR -- -j${SLURM_CPUS_PER_TASK}
cmake --build $BUILD_DIR --target arbor examples tests pyarb -- -j${SLURM_CPUS_PER_TASK}
fi
- cmake --install $BUILD_DIR

Expand Down

0 comments on commit 2ff99e0

Please sign in to comment.