Skip to content
Snippets Groups Projects
Unverified Commit 0edf8554 authored by Benjamin Cumming's avatar Benjamin Cumming Committed by GitHub
Browse files

Attempt fixing a64fx build (#1636)

Reduce number of parallel build jobs to reduce risk of OOM in CI builds.
parent cb00bc95
No related branches found
No related tags found
No related merge requests found
......@@ -9,13 +9,16 @@ echo "=== loading environment"
source /users/bcumming/a64fx/env.sh
spack load git gcc@11.1.0 cmake ninja
cd "$base_path"
git submodule init
git submodule update
build_path="$base_path/build"
echo "=== building: $build_path"
mkdir "$build_path"
cd "$build_path"
echo "=== CC=gcc CXX=g++ cmake .. -DARB_USE_BUNDLED_LIBS=on -DARB_ARCH=armv8.2-a+sve -DARB_VECTORIZE=on -G Ninja"
CC=gcc CXX=g++ cmake .. -DARB_USE_BUNDLED_LIBS=on -DARB_ARCH=armv8.2-a+sve -DARB_VECTORIZE=on -G Ninja
ninja -j48 unit
ninja -j8 unit
bin_path="$build_path/bin"
echo "=== running unit tests: $bin_path/unit"
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment