Skip to content
Snippets Groups Projects
Commit ee629c57 authored by Mulas, Giacomo's avatar Mulas, Giacomo
Browse files

update runner compile script to put executables in compiler-dependent dirs

parent fb6fc032
No related branches found
No related tags found
No related merge requests found
......@@ -47,19 +47,19 @@ building_stage:
- cat /etc/os-release
- cd src
- echo "Running make with gnu compilers version 11..."
- make wipe && CXX=g++-11 FC=gfortran-11 make -j
- make clean && BUILDDIR=$PWD/../build_gnu11 CXX=g++-11 FC=gfortran-11 make -j
- echo "Running make with gnu compilers version 12..."
- make wipe && CXX=g++-12 FC=gfortran-12 make -j
- make clean && BUILDDIR=$PWD/../build_gnu12 CXX=g++-12 FC=gfortran-12 make -j
- echo "Running make with gnu fortran version 12 and clang version 13..."
- make wipe && CXX="clang++-13 -stdlib=libc++" FC=gfortran-12 make -j
- make clean && BUILDDIR=$PWD/../build_clang13 CXX="clang++-13 -stdlib=libc++" FC=gfortran-12 make -j
- echo "Running make with gnu fortran version 12 and clang version 14..."
- make wipe && CXX="clang++-14 -stdlib=libc++" FC=gfortran-12 make -j
- make clean && BUILDDIR=$PWD/../build_clang14 CXX="clang++-14 -stdlib=libc++" FC=gfortran-12 make -j
- echo "Running make with gnu fortran version 12 and clang version 15..."
- make wipe && CXX="clang++-15 -stdlib=libc++" FC=gfortran-12 make -j
- make clean && BUILDDIR=$PWD/../build_clang15 CXX="clang++-15 -stdlib=libc++" FC=gfortran-12 make -j
- echo "Running make with gnu fortran version 12 and clang version 16..."
- make wipe && CXX="clang++-16 -stdlib=libc++" FC=gfortran-12 make -j
- make clean && BUILDDIR=$PWD/../build_clang16 CXX="clang++-16 -stdlib=libc++" FC=gfortran-12 make -j
- echo "Finally running make with default compilers..."
- make wipe && make -j
- make clean && make -j
- make docs -j && make -C ../doc/build/latex -j
running_stage:
......
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