Update .cirrus.yml

This commit is contained in:
Martin Kroeker 2024-03-23 13:28:09 +01:00 committed by GitHub
parent e855951a1f
commit ba438373bc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 2 deletions

View File

@ -155,10 +155,11 @@ FreeBSD_task:
freebsd_instance: freebsd_instance:
image_family: freebsd-13-2 image_family: freebsd-13-2
install_script: install_script:
- pkg update -f && pkg upgrade -y && pkg install -y gmake gcc - pkg update -f && pkg upgrade -y && pkg install -y gmake gcc valgrind
- ln -s /usr/local/lib/gcc12/libgfortran.so.5.0.0 /usr/lib/libgfortran.so - ln -s /usr/local/lib/gcc12/libgfortran.so.5.0.0 /usr/lib/libgfortran.so
compile_script: compile_script:
- gmake CC=clang FC=gfortran USE_OPENMP=1 DEBUG=1 CPP_THREAD_SAFETY_TEST=1 NUM_PARALLEL=3 - gmake CC=clang FC=gfortran USE_OPENMP=1 DEBUG=1 CPP_THREAD_SAFETY_TEST=1 NUM_PARALLEL=2
- cd cpp_thread_test; valgrind ./dgemv_tester
#task: #task:
# name: Windows/LLVM16 --- too slow --- # name: Windows/LLVM16 --- too slow ---